Static code analysis and corrections

This commit is contained in:
Kristjan Komlosi
2019-07-17 16:06:09 +02:00
parent 674692c2fc
commit 21bfae9fbc
10086 changed files with 2102103 additions and 51 deletions
+21
View File
@@ -0,0 +1,21 @@
#main.py - the main program file of the TeraHz project
#This code is licensed under 3-clause BSD licensed
import serial as ser
#global config
# TODO: move this to another file
uartpath = '/dev/ttyUSB0'
uartbaud = 115200
uarttout = 5
print('TeraHz project')
print('Accessing the serial port')
sp = 'blank'
try:
sp = ser.Serial(uartpath, uartbaud, timeout=uarttout)
except Exception as e:
print('Connection to serial port at {} failed!'.format(uartpath))
raise e
exit()