summaryrefslogtreecommitdiffstats
path: root/Src/PyCatcher/src/driverConnector.py
diff options
context:
space:
mode:
Diffstat (limited to 'Src/PyCatcher/src/driverConnector.py')
-rw-r--r--Src/PyCatcher/src/driverConnector.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/PyCatcher/src/driverConnector.py b/Src/PyCatcher/src/driverConnector.py
index de8a0d4..2e990fd 100644
--- a/Src/PyCatcher/src/driverConnector.py
+++ b/Src/PyCatcher/src/driverConnector.py
@@ -117,7 +117,7 @@ class ScanThread(threading.Thread):
line = scan_process.stdout.readline()
match = re.search(r'rxlev:\s(.\d+)',line)
if match:
- base_station.rxlev = match.group(1)
+ base_station.rxlev = int(match.group(1))
#get si2
line = scan_process.stdout.readline()
match = re.search(r'si2\s(.+)',line)