-
Notifications
You must be signed in to change notification settings - Fork 0
/
sb.py
72 lines (60 loc) · 2.06 KB
/
sb.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import sys
import optparse
from serial import Serial
def flush_serial(serial):
""" Flushing serial in/out. """
serial.flushInput()
serial.flushOutput()
def safe_sendBreak(self, serial):
""" Wraps serial.sendBreak() to avoid serial::serialposix.py exception on Linux
Traceback (most recent call last):
File "make.py", line 189, in <module>
serial.sendBreak()
File "/usr/lib/python2.7/dist-packages/serial/serialposix.py", line 511, in sendBreak
termios.tcsendbreak(self.fd, int(duration/0.25))
error: (32, 'Broken pipe')
"""
result = True
try:
serial.sendBreak()
except:
# In linux a termios.error is raised in sendBreak and in setBreak.
# The following setBreak() is needed to release the reset signal on the target mcu.
try:
serial.setBreak(False)
except:
result = False
return result
if __name__ == '__main__':
parser = optparse.OptionParser()
parser.add_option('-f', '--flush',
dest='serial_flush',
metavar=True,
action="store_false",
help='Do not flush serial before reset')
parser.add_option("-s", "--serial", dest="port",
default=None, help="The mbed serial port")
(opts, args) = parser.parse_args()
print "Sending break to " + opts.port + "..."
try:
serial = Serial(opts.port, timeout=1)
baud = 9600
serial.setBaudrate(baud)
if opts.serial_flush:
print "Flushing..."
flush_serial(serial)
safe_sendBreak(serial)
try:
while True:
test_output = serial.read(512)
if test_output:
sys.stdout.write('%s' % test_output)
flush_serial(serial)
if "{{end}}" in test_output:
break
except KeyboardInterrupt, _:
print "CTRL+C break"
serial.close()
except Exception as e:
print "Error: %s" % (e)
print "Done"