From 9a64958514665842c1b1af8a63b97efe42289f87 Mon Sep 17 00:00:00 2001 From: Patricio Latini Date: Sat, 26 Nov 2022 17:43:38 +0000 Subject: [PATCH] phy_common: add band 71 definition --- lib/include/srsran/phy/common/phy_common.h | 2 +- lib/src/phy/common/phy_common.c | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/include/srsran/phy/common/phy_common.h b/lib/include/srsran/phy/common/phy_common.h index dd4908529..6b8c755a4 100644 --- a/lib/include/srsran/phy/common/phy_common.h +++ b/lib/include/srsran/phy/common/phy_common.h @@ -162,7 +162,7 @@ typedef enum { SRSRAN_SF_NORM = 0, SRSRAN_SF_MBSFN } srsran_sf_t; #define SRSRAN_FDD_NOF_HARQ (FDD_HARQ_DELAY_DL_MS + FDD_HARQ_DELAY_UL_MS) #define SRSRAN_MAX_HARQ_PROC 15 -#define SRSRAN_NOF_LTE_BANDS 58 +#define SRSRAN_NOF_LTE_BANDS 59 #define SRSRAN_DEFAULT_MAX_FRAMES_PBCH 500 #define SRSRAN_DEFAULT_MAX_FRAMES_PSS 10 diff --git a/lib/src/phy/common/phy_common.c b/lib/src/phy/common/phy_common.c index 2abcb954f..ff49aa8ae 100644 --- a/lib/src/phy/common/phy_common.c +++ b/lib/src/phy/common/phy_common.c @@ -578,7 +578,8 @@ struct lte_band lte_bands[SRSRAN_NOF_LTE_BANDS] = { {68, 753, 67536, 132672, 55, SRSRAN_BAND_GEO_AREA_EMEA}, {69, 2570, 67836, 0, 0, SRSRAN_BAND_GEO_AREA_EMEA}, {70, 1995, 68336, 132972, 300, SRSRAN_BAND_GEO_AREA_NAR}, - {71, 0, 68586, 133122, 0, SRSRAN_BAND_GEO_AREA_NAR} // dummy band to bound band 70 earfcn + {71, 617, 68586, 133122, -46, SRSRAN_BAND_GEO_AREA_NAR}, + {72, 0, 68936, 133472, 0, SRSRAN_BAND_GEO_AREA_NAR} // dummy band to bound band 71 earfcn }; int srsran_str2mimotype(char* mimo_type_str, srsran_tx_scheme_t* type)