blob: 052016d785793d3476d45936170e20fe02d78cb4 [file] [log] [blame]
Kevin O'Connor2547bb82009-04-19 11:04:59 -04001#!/usr/bin/env python
2# Script that can read from a serial device and show timestamps.
3#
4# Copyright (C) 2009 Kevin O'Connor <kevin@koconnor.net>
5#
6# This file may be distributed under the terms of the GNU GPLv3 license.
7
8# Usage:
9# tools/readserial.py /dev/ttyUSB0 115200
10
11import sys
12import time
13import select
14import serial
15
16# Reset time counter after this much idle time.
17RESTARTINTERVAL = 60
18# Alter timing reports based on how much time would be spent writing
19# to serial.
20ADJUSTBAUD = 1
Kevin O'Connor77443202009-12-05 14:23:27 -050021# Number of bits in a transmitted byte - 8N1 is 1 start bit + 8 data
22# bits + 1 stop bit.
23BITSPERBYTE = 10
Kevin O'Connor2547bb82009-04-19 11:04:59 -040024
25def readserial(infile, logfile, baudrate):
Kevin O'Connora1dadf42009-04-26 21:24:16 -040026 lasttime = 0
Kevin O'Connor58db9c42009-12-12 13:28:38 -050027 byteadjust = 0.0
28 if ADJUSTBAUD:
29 byteadjust = float(BITSPERBYTE) / baudrate
Kevin O'Connor2547bb82009-04-19 11:04:59 -040030 while 1:
31 # Read data
32 try:
33 res = select.select([infile, sys.stdin], [], [])
34 except KeyboardInterrupt:
35 sys.stdout.write("\n")
36 break
37 if sys.stdin in res[0]:
38 # Got keyboard input - force reset on next serial input
39 sys.stdin.read(1)
Kevin O'Connora1dadf42009-04-26 21:24:16 -040040 lasttime = 0
Kevin O'Connor2547bb82009-04-19 11:04:59 -040041 if len(res[0]) == 1:
42 continue
Kevin O'Connor2547bb82009-04-19 11:04:59 -040043 d = infile.read(4096)
Kevin O'Connor58db9c42009-12-12 13:28:38 -050044 datatime = time.time()
45
46 datatime -= len(d) * byteadjust
Kevin O'Connor2547bb82009-04-19 11:04:59 -040047
48 # Reset start time if no data for some time
Kevin O'Connor58db9c42009-12-12 13:28:38 -050049 if datatime - lasttime > RESTARTINTERVAL:
50 starttime = datatime
Kevin O'Connor2547bb82009-04-19 11:04:59 -040051 charcount = 0
52 isnewline = 1
Kevin O'Connora53ab002009-12-05 13:44:39 -050053 msg = "\n\n======= %s (adjust=%d)\n" % (
Kevin O'Connor58db9c42009-12-12 13:28:38 -050054 time.asctime(time.localtime(datatime)), ADJUSTBAUD)
Kevin O'Connora53ab002009-12-05 13:44:39 -050055 sys.stdout.write(msg)
56 logfile.write(msg)
Kevin O'Connor58db9c42009-12-12 13:28:38 -050057 lasttime = datatime
Kevin O'Connor2547bb82009-04-19 11:04:59 -040058
59 # Translate unprintable chars; add timestamps
60 out = ""
61 for c in d:
62 if isnewline:
Kevin O'Connor58db9c42009-12-12 13:28:38 -050063 delta = datatime - starttime - (charcount * byteadjust)
Kevin O'Connor2547bb82009-04-19 11:04:59 -040064 out += "%06.3f: " % delta
65 isnewline = 0
66 oc = ord(c)
67 charcount += 1
Kevin O'Connor58db9c42009-12-12 13:28:38 -050068 datatime += byteadjust
Kevin O'Connor2547bb82009-04-19 11:04:59 -040069 if oc == 0x0d:
70 continue
71 if oc == 0x00:
72 out += "<00>\n"
73 isnewline = 1
74 continue
75 if oc == 0x0a:
76 out += "\n"
77 isnewline = 1
78 continue
79 if oc < 0x20 or oc >= 0x7f and oc != 0x09:
80 out += "<%02x>" % oc
81 continue
82 out += c
83
84 sys.stdout.write(out)
85 sys.stdout.flush()
86 logfile.write(out)
87 logfile.flush()
88
89def printUsage():
90 print "Usage:\n %s [<serialdevice> [<baud>]]" % (sys.argv[0],)
91 sys.exit(1)
92
93def main():
94 serialport = 0
95 baud = 115200
96 if len(sys.argv) > 3:
97 printUsage()
98 if len(sys.argv) > 1:
99 serialport = sys.argv[1]
100 if len(sys.argv) > 2:
101 baud = int(sys.argv[2])
102
103 ser = serial.Serial(serialport, baud, timeout=0)
104
105 logname = time.strftime("seriallog-%Y%m%d_%H%M%S.log")
106 f = open(logname, 'wb')
107 readserial(ser, f, baud)
108
109if __name__ == '__main__':
110 main()