From 9ff1eabdb1a5bc640b517c1c56de1160de11c591 Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Fri, 9 Oct 2020 16:54:27 +0200 Subject: [PATCH] srsenb: Fix ECI in handover cell list So far we only support setting cell IDs from same ENB. Support for handover to other ENB will come later, probably by adding some API to be called during the test to add own's CellID's to other ENB's config.t Change-Id: I1780bda130cde0faab15d4032117e0aa2b9c5dbe --- src/osmo_gsm_tester/templates/srsenb_rr.conf.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osmo_gsm_tester/templates/srsenb_rr.conf.tmpl b/src/osmo_gsm_tester/templates/srsenb_rr.conf.tmpl index b1e9cb27..8c06c0d6 100644 --- a/src/osmo_gsm_tester/templates/srsenb_rr.conf.tmpl +++ b/src/osmo_gsm_tester/templates/srsenb_rr.conf.tmpl @@ -88,7 +88,7 @@ cell_list = ${',' if loop.my_num_items != 0 else ''} <% loop.my_num_items += 1 %> { - eci = ${ncell.cell_id}; + eci = ${hex((int(enb.id)<<8) + int(ncell.cell_id))}; dl_earfcn = ${ncell.dl_earfcn}; pci = ${ncell.pci}; }