Serial port naming for windows machines fixed.

This commit is contained in:
klaute 2016-09-25 11:14:30 +02:00
förälder 2b9ec977a1
incheckning d859ab1aad
4 ändrade filer med 20 tillägg och 2 borttagningar

5
tools/2m_scan.bat Normal file
Visa fil

@ -0,0 +1,5 @@
@echo off
C:\Python27\python.exe meas.py -o 70cm.csv -s 144000000 -e 146100000 -i 50 -p 5000 -d COM16 -m
pause

5
tools/70cm_scan.bat Normal file
Visa fil

@ -0,0 +1,5 @@
@echo off
C:\Python27\python.exe meas.py -o 70cm.csv -s 430000000 -e 440100000 -i 50 -p 5000 -d COM16 -m
pause

Visa fil

@ -0,0 +1,6 @@
@echo off
C:\Python27\python.exe -m pip install --upgrade pip
C:\Python27\python.exe -m pip install --upgrade matplotlib pyserial
pause

Visa fil

@ -285,8 +285,10 @@ def openSerialDevice(d):
global ser
try:
#serial.Serial.close()
ser = serial.Serial("\\\\.\\"+d)
if "com" in d.lower():
d = "\\\\.\\"+d
ser = serial.Serial(d)
except:
print "ERROR (1): Can't open the serial device " + d
exit(1)