Commit 0217cd50 authored by luis_pereira87's avatar luis_pereira87

Update in documentation

parent 270c540c
...@@ -4,7 +4,6 @@ ...@@ -4,7 +4,6 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0", "version": "0.2.0",
"configurations": [ "configurations": [
{ {
"name": "(gdb) Launch", "name": "(gdb) Launch",
"type": "cppdbg", "type": "cppdbg",
......
...@@ -332,6 +332,9 @@ The following features are valid for the gNB and the 5G-NR UE. ...@@ -332,6 +332,9 @@ The following features are valid for the gNB and the 5G-NR UE.
- evalution of RSRP report - evalution of RSRP report
- evaluation of CQI report - evaluation of CQI report
- MAC scheduling of SR reception - MAC scheduling of SR reception
- Bandwidth part (BWP) operation
- Handle multiple dedicated BWPs
- BWP switching through RRCReconfiguration method
**gNB RLC** **gNB RLC**
- Send/Receive operations according to 38.322 Rel.16 - Send/Receive operations according to 38.322 Rel.16
...@@ -493,6 +496,8 @@ The following features are valid for the gNB and the 5G-NR UE. ...@@ -493,6 +496,8 @@ The following features are valid for the gNB and the 5G-NR UE.
- Configuration of fapi PDU according to DCI - Configuration of fapi PDU according to DCI
* Scheduler procedures for SRS transmission * Scheduler procedures for SRS transmission
- Periodic SRS transmission - Periodic SRS transmission
* Bandwidth part (BWP) operation
- Operation in configured dedicated BWP through RRCSetup or RRCReconfiguration
**UE RLC** **UE RLC**
......
...@@ -9,9 +9,9 @@ ...@@ -9,9 +9,9 @@
## Bandwidth part (BWP) ## ## Bandwidth part (BWP) ##
Bandwidth Part (BWP) is a set of contiguous Resource Blocks in the resource grid. Bandwidth Part (BWP) is a set of contiguous Resource Blocks in the resource grid.
Parameters of a Bandwidth Part are communicated to UE using RRC parameters: BWP-Downlink and BWP-Uplink. Parameters of a BWP are communicated to UE using RRC parameters: BWP-Downlink and BWP-Uplink.
A UE can be configured with a set of 4 BWPs in uplink (UL) and downlink (DL) direction. But only 1 BWP can be active in UL and DL direction at a given time. A UE can be configured with a set of 4 BWPs in uplink (UL) and downlink (DL) direction (3GPP TS 38.331 Annex B.2 Description of BWP configuration options). But only 1 BWP can be active in UL and DL direction at a given time.
# Procedure to run multiple dedicated BWPs # # Procedure to run multiple dedicated BWPs #
...@@ -29,28 +29,23 @@ To configure multiple BWPs, add the following parameters to the gNB configuratio ...@@ -29,28 +29,23 @@ To configure multiple BWPs, add the following parameters to the gNB configuratio
Each dedicated BWP must have: Each dedicated BWP must have:
``` ```
# BWP 1 Configuration # BWP 1 Configuration
bwp-Id_1 = 1; dl_bwp-Id_1 = 1;
bwp1_locationAndBandwidth = 28908; // RBstart=33,L=106 dl_bwp1_locationAndBandwidth = 28875; // RBstart=0, L=106 (40 MHz BW)
# subcarrierSpacing # subcarrierSpacing
# 0=kHz15, 1=kHz30, 2=kHz60, 3=kHz120 # 0=kHz15, 1=kHz30, 2=kHz60, 3=kHz120
bwp1_subcarrierSpacing = 1; dl_bwp1_subcarrierSpacing = 1;
``` ```
Find these parameters in this configuration file: "targets/PROJECTS/GENERIC-LTE-EPC/CONF/gnb.band78.tm1.106PRB.usrpn300.SCD.conf" Find these parameters in this configuration file: "targets/PROJECTS/GENERIC-NR-5GC/CONF/gnb.sa.band78.fr1.106PRB.usrpb210.conf"
### NOTE:
* For changing bandwidth, 'dl_carrierBandwidth' and 'ul_carrierBandwidth' must be modified according
to the bandwidth of the BWP
* Currently only 'firstActiveDownlinkBWP-Id' is used to configure both DL and UL BWPs
# Testing gNB and UE in RF simulator # Testing gNB and UE in RF simulator
## gNB command: ## gNB command:
``` ```
sudo RFSIMULATOR=server ./nr-softmodem -O ../../../targets/PROJECTS/GENERIC-LTE-EPC/CONF/gnb.band78.tm1.106PRB.usrpn300.SCD.conf --rfsim --phy-test -d sudo ./nr-softmodem -O ../../../targets/PROJECTS/GENERIC-NR-5GC/CONF/gnb.sa.band78.fr1.106PRB.usrpb210.conf --gNBs.[0].min_rxtxtime 6 --rfsim --sa
``` ```
## UE command: ## UE command:
``` ```
sudo RFSIMULATOR=127.0.0.1 ./nr-uesoftmodem --rfsim --phy-test -d sudo RFSIMULATOR=127.0.0.1 ./nr-uesoftmodem -r 106 --numerology 1 --band 78 -C 3619200000 --nokrnmod --rfsim --sa --uicc0.imsi 208990000000001
``` ```
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment