From 7704c09ce2c40e62aedc0f82cbe63e945396cb45 Mon Sep 17 00:00:00 2001 From: Xavier Arteaga Date: Fri, 19 Feb 2021 19:40:44 +0100 Subject: [PATCH] Fix typos --- lib/src/phy/phch/dci_nr.c | 6 +++--- srsue/hdr/phy/scell/intra_measure.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/src/phy/phch/dci_nr.c b/lib/src/phy/phch/dci_nr.c index a6c9b205d..6ba0e51ed 100644 --- a/lib/src/phy/phch/dci_nr.c +++ b/lib/src/phy/phch/dci_nr.c @@ -156,7 +156,7 @@ int srsran_dci_nr_format_0_0_pack(const srsran_carrier_nr_t* carrier, *(y++) = 0; } - // UL/SUL indicator – 1 bit for UEs configured with supplementaryUplink in ServingCellConfig, othwerwise 0 + // UL/SUL indicator – 1 bit for UEs configured with supplementaryUplink in ServingCellConfig, otherwise 0 if (supplementary_uplink) { *(y++) = 0; } @@ -250,7 +250,7 @@ int srsran_dci_nr_format_0_0_unpack(const srsran_carrier_nr_t* carrier, y++; } - // UL/SUL indicator – 1 bit for UEs configured with supplementaryUplink in ServingCellConfig, othwerwise 0 + // UL/SUL indicator – 1 bit for UEs configured with supplementaryUplink in ServingCellConfig, otherwise 0 if (supplementary_uplink) { y++; } @@ -306,7 +306,7 @@ int srsran_dci_nr_format_0_0_sizeof(const srsran_carrier_nr_t* carrier, // Padding goes here count += padding; - // UL/SUL indicator – 1 bit for UEs configured with supplementaryUplink in ServingCellConfig, othwerwise 0 + // UL/SUL indicator – 1 bit for UEs configured with supplementaryUplink in ServingCellConfig, otherwise 0 if (supplementary_uplink) { count++; } diff --git a/srsue/hdr/phy/scell/intra_measure.h b/srsue/hdr/phy/scell/intra_measure.h index cda0204fa..cff540036 100644 --- a/srsue/hdr/phy/scell/intra_measure.h +++ b/srsue/hdr/phy/scell/intra_measure.h @@ -77,7 +77,7 @@ public: void stop(); /** - * Sets the primmary cell, configures the cell bandwidth and sampling rate + * Sets the primary cell, configures the cell bandwidth and sampling rate * @param earfcn Frequency the component is receiving base-band from. Used only for reporting the EARFCN to the RRC * @param cell Actual cell configuration */