From fe0f297b8cf2b0f07ed7c6094e17fac654431dac Mon Sep 17 00:00:00 2001 From: Motomura Yohei Date: Fri, 6 Sep 2019 12:46:08 -0700 Subject: [PATCH] Adding support for band 39 to orc8r (#612) Summary: Band39 is already supported by issue https://github.com/facebookincubator/magma/issues/481 and PR https://github.com/facebookincubator/magma/issues/482 . However, this patch (https://github.com/facebookincubator/magma/issues/481 , https://github.com/facebookincubator/magma/issues/482 ) was only support A-GW and Orc8r was not supported. This PR adds band39 support to orc8r by adding the network cellular config on orc8r. Pull Request resolved: https://github.com/facebookincubator/magma/pull/612 Reviewed By: themarwhal Differential Revision: D17230570 Pulled By: xjtian fbshipit-source-id: 170884b2af9af1ddc03d902e63e1a9712bce0786 --- lte/cloud/go/services/cellular/utils/lte_bands.go | 1 + 1 file changed, 1 insertion(+) diff --git a/lte/cloud/go/services/cellular/utils/lte_bands.go b/lte/cloud/go/services/cellular/utils/lte_bands.go index 301aadf176ab..dc3f6f31fc85 100644 --- a/lte/cloud/go/services/cellular/utils/lte_bands.go +++ b/lte/cloud/go/services/cellular/utils/lte_bands.go @@ -37,6 +37,7 @@ var bands = [...]LTEBand{ {ID: 4, Mode: FDDMode, StartEarfcnDl: 1950, StartEarfcnUl: 19950, CountEarfcn: 450}, {ID: 28, Mode: FDDMode, StartEarfcnDl: 9210, StartEarfcnUl: 27210, CountEarfcn: 450}, // TDDMode + {ID: 39, Mode: TDDMode, StartEarfcnDl: 38250, CountEarfcn: 400}, {ID: 40, Mode: TDDMode, StartEarfcnDl: 38650, CountEarfcn: 1000}, {ID: 41, Mode: TDDMode, StartEarfcnDl: 39650, CountEarfcn: 1940}, {ID: 42, Mode: TDDMode, StartEarfcnDl: 41590, CountEarfcn: 2000},