aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2017-10-17 11:14:48 +0700
committerPiotr Krysik <ptrkrysik@users.noreply.github.com>2017-11-05 17:33:26 +0100
commit5d68aa5620666a8ba84ca41eecd8f7987a869119 (patch)
treebdf0865a49a6ed9543383ca9f0d191573fd14084 /apps
parent962e2d83bb0eb62e6d1222339977c2f5f23d0dbd (diff)
apps/grgsm_trx: get rid of unused subdev_spec
This could be specified via the device_args, for example: "subdev=B:0".
Diffstat (limited to 'apps')
-rwxr-xr-xapps/grgsm_trx13
1 files changed, 4 insertions, 9 deletions
diff --git a/apps/grgsm_trx b/apps/grgsm_trx
index a5cb1ee..7886b12 100755
--- a/apps/grgsm_trx
+++ b/apps/grgsm_trx
@@ -43,7 +43,6 @@ class Application:
# PHY specific
phy_sample_rate = 2000000
- phy_subdev_spec = False
phy_gain = 30
phy_args = ""
phy_ppm = 0
@@ -57,9 +56,8 @@ class Application:
def run(self):
# Init Radio interface
- self.radio = radio_if(self.phy_args, self.phy_subdev_spec,
- self.phy_sample_rate, self.phy_gain, self.phy_ppm,
- self.remote_addr, self.base_port)
+ self.radio = radio_if(self.phy_args, self.phy_sample_rate,
+ self.phy_gain, self.phy_ppm, self.remote_addr, self.base_port)
# Power measurement emulation
# Noise: -120 .. -105
@@ -99,7 +97,6 @@ class Application:
s += " Radio interface specific\n" \
" -a --device-args Set device arguments\n" \
" -s --sample-rate Set PHY sample rate (default 2000000)\n" \
- " -S --subdev-spec Set PHY sub-device specification\n" \
" -g --gain Set PHY gain (default 30)\n" \
" --ppm Set PHY frequency correction (default 0)\n"
@@ -108,9 +105,9 @@ class Application:
def parse_argv(self):
try:
opts, args = getopt.getopt(sys.argv[1:],
- "a:p:i:s:S:g:h",
+ "a:p:i:s:g:h",
["help", "remote-addr=", "base-port=", "device-args=",
- "gain=", "subdev-spec=", "sample-rate=", "ppm="])
+ "gain=", "sample-rate=", "ppm="])
except getopt.GetoptError as err:
# Print(help and exit)
self.print_help()
@@ -137,8 +134,6 @@ class Application:
self.phy_args = v
elif o in ("-g", "--gain"):
self.phy_gain = int(v)
- elif o in ("-S", "--subdev-spec"):
- self.phy_subdev_spec = v
elif o in ("-s", "--sample-rate"):
self.phy_sample_rate = int(v)
elif o in ("--ppm"):