1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

robotis-loader.py: fix flake8 errors

I fixed the errors and lazily silenced the 'bare-except'.

    boards/opencm904/dist/robotis-loader.py:85:1: E722 do not use bare except'
    boards/opencm904/dist/robotis-loader.py:91:1: E722 do not use bare except'
    boards/opencm904/dist/robotis-loader.py:101:16: E703 statement ends with a semicolon
    boards/opencm904/dist/robotis-loader.py:60:1: E265 block comment should start with '# '
    boards/opencm904/dist/robotis-loader.py:62:1: E265 block comment should start with '# '
This commit is contained in:
Gaëtan Harter 2018-04-09 18:40:52 +02:00
parent 7b6486319c
commit a1ea4cde0e

View File

@ -57,9 +57,9 @@ else:
# Reading command line
#if len(sys.argv) != 3:
# exit('! Usage: robotis-loader.py <serial-port> <binary>')
#pgm, port, binary = sys.argv
# if len(sys.argv) != 3:
# exit('! Usage: robotis-loader.py <serial-port> <binary>')
# pgm, port, binary = sys.argv
pgm = sys.argv[0]
port = os.environ["PORT"]
@ -86,13 +86,13 @@ try:
size = stat.st_size
firmware = open(binary, 'rb')
print('* Opening %s, size=%d' % (binary, size))
except:
except: # noqa: E722
exit('! Unable to open file %s' % binary)
# Opening serial port
try:
s = serial.Serial(port, baudrate=115200)
except:
except: # noqa: E722
exit('! Unable to open serial port %s' % port)
print('* Resetting the board')
@ -102,7 +102,7 @@ time.sleep(0.1)
s.setRTS(False)
s.write(b'CM9X')
s.close()
time.sleep(1.0);
time.sleep(1.0)
print('* Connecting...')
s = serial.Serial(port, baudrate=115200)