From bf691e8c65dee2a54c2f1fae19a4a431aed9132f Mon Sep 17 00:00:00 2001 From: Ismael Gomez Date: Fri, 16 Feb 2018 18:14:00 +0100 Subject: [PATCH] Do not stop RX during HO --- srsue/src/phy/phch_recv.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/srsue/src/phy/phch_recv.cc b/srsue/src/phy/phch_recv.cc index 72afb5e1e..6016f3e91 100644 --- a/srsue/src/phy/phch_recv.cc +++ b/srsue/src/phy/phch_recv.cc @@ -384,11 +384,13 @@ bool phch_recv::cell_handover(srslte_cell_t cell) this->cell = cell; Info("Cell HO: Stopping sync with current cell\n"); worker_com->reset_ul(); - stop_sync(); + //stop_sync(); Info("Cell HO: Reconfiguring cell\n"); if (set_cell()) { Info("Cell HO: Synchronizing with new cell\n"); - resync_sfn(true, true); + //resync_sfn(true, true); + sfn_p.reset(); + phy_state = CELL_RESELECT; ret = true; } else { log_h->error("Cell HO: Configuring cell PCI=%d\n", cell.id);