[PATCH] osmocom-bb[master]: fake_trx: don't send clock indications to mobile stations

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

Harald Welte gerrit-no-reply at lists.osmocom.org
Thu Feb 22 15:33:10 UTC 2018


Review at  https://gerrit.osmocom.org/6742

fake_trx: don't send clock indications to mobile stations

Clock indications are only required for BTS, while MS can
obtain current frame number from messages on DATA interface.

Change-Id: Id2993847a3581cac0d355850ad09ceabc6116d3f
---
M src/target/fake_trx/fake_trx.py
1 file changed, 2 insertions(+), 5 deletions(-)


  git pull ssh://gerrit.osmocom.org:29418/osmocom-bb refs/changes/42/6742/1

diff --git a/src/target/fake_trx/fake_trx.py b/src/target/fake_trx/fake_trx.py
index b186071..4772701 100755
--- a/src/target/fake_trx/fake_trx.py
+++ b/src/target/fake_trx/fake_trx.py
@@ -85,12 +85,10 @@
 		self.bts_ctrl.burst_fwd = self.burst_fwd
 		self.bb_ctrl.burst_fwd = self.burst_fwd
 
-		# Share clock between BTS and BB
+		# Provide clock to BTS
 		self.bts_clck = UDPLink(self.bts_addr,
 			self.bts_base_port + 100, self.bts_base_port)
-		self.bb_clck = UDPLink(self.bb_addr,
-			self.bb_base_port + 100, self.bb_base_port)
-		self.clck_gen = CLCKGen([self.bts_clck, self.bb_clck])
+		self.clck_gen = CLCKGen([self.bts_clck])
 		self.clck_gen.start()
 
 		print("[i] Init complete")
@@ -129,7 +127,6 @@
 
 		# Close CLCK interfaces
 		self.bts_clck.shutdown()
-		self.bb_clck.shutdown()
 
 		# Close CTRL interfaces
 		self.bts_ctrl.shutdown()

-- 
To view, visit https://gerrit.osmocom.org/6742
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Id2993847a3581cac0d355850ad09ceabc6116d3f
Gerrit-PatchSet: 1
Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Owner: Harald Welte <laforge at gnumonks.org>



More information about the gerrit-log mailing list