parent
f9aa1f5d94
commit
8630513343
|
@ -1008,7 +1008,7 @@ def main():
|
||||||
print("Bandwidth in Hz:\t", end="")
|
print("Bandwidth in Hz:\t", end="")
|
||||||
rnode.bandwidth = int(input())
|
rnode.bandwidth = int(input())
|
||||||
|
|
||||||
if args.txp >= 0 and args.txp <= 17:
|
if args.txp != None and (args.txp >= 0 and args.txp <= 17):
|
||||||
rnode.txpower = args.txp
|
rnode.txpower = args.txp
|
||||||
else:
|
else:
|
||||||
print("TX Power in dBm:\t", end="")
|
print("TX Power in dBm:\t", end="")
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="rnodeconf",
|
name="rnodeconf",
|
||||||
version="0.9.8",
|
version="0.9.9",
|
||||||
author="Mark Qvist",
|
author="Mark Qvist",
|
||||||
author_email="mark@unsigned.io",
|
author_email="mark@unsigned.io",
|
||||||
description="Configuration Utility for RNode hardware",
|
description="Configuration Utility for RNode hardware",
|
||||||
|
|
Loading…
Reference in New Issue