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
Review at https://gerrit.osmocom.org/6720
fake_trx: fix copy-paste error
Change-Id: I9a6b294ad3501aa26d92667a995d08ca3be03da4
---
M src/target/fake_trx/ctrl_if_bb.py
M src/target/fake_trx/ctrl_if_bts.py
2 files changed, 2 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmocom-bb refs/changes/20/6720/1
diff --git a/src/target/fake_trx/ctrl_if_bb.py b/src/target/fake_trx/ctrl_if_bb.py
index 6880000..32b82d3 100644
--- a/src/target/fake_trx/ctrl_if_bb.py
+++ b/src/target/fake_trx/ctrl_if_bb.py
@@ -50,7 +50,7 @@
# Ensure RX / TX freq. are set
if (self.rx_freq is None) or (self.tx_freq is None):
- print("[!] Transceiver already started")
+ print("[!] RX / TX freq. are not set")
return -1
print("[i] Starting transceiver...")
diff --git a/src/target/fake_trx/ctrl_if_bts.py b/src/target/fake_trx/ctrl_if_bts.py
index cdaaf81..d184f2e 100644
--- a/src/target/fake_trx/ctrl_if_bts.py
+++ b/src/target/fake_trx/ctrl_if_bts.py
@@ -50,7 +50,7 @@
# Ensure RX / TX freq. are set
if (self.rx_freq is None) or (self.tx_freq is None):
- print("[!] Transceiver already started")
+ print("[!] RX / TX freq. are not set")
return -1
print("[i] Starting transceiver...")
--
To view, visit https://gerrit.osmocom.org/6720
To unsubscribe, visit https://gerrit.osmocom.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: I9a6b294ad3501aa26d92667a995d08ca3be03da4
Gerrit-PatchSet: 1
Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Owner: Harald Welte <laforge at gnumonks.org>