From daee9b48ac6bbc42e1bd406dc4a1c138cb19d257 Mon Sep 17 00:00:00 2001 From: Anthony LaTorre Date: Thu, 9 Jun 2011 20:46:59 -0400 Subject: you can now take data using sequence mode! also, updated the README file to include more examples. sock.py now replaces scope.py. sock.py is almost identical, but i renamed the class to Socket and fixed it so that data headers are properly received; previously, it was assumed that the 8 byte header was sent in a single recv() call, which is not always the case. draw.py is a new script to draw waveforms using matplotlib instead of root. --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'config.py') diff --git a/config.py b/config.py index b55c5f5..2af80da 100755 --- a/config.py +++ b/config.py @@ -40,7 +40,7 @@ Examples: """ commands = ['TIME_DIV', 'COMM_FORMAT', 'COMM_HEADER', 'COMM_ORDER'] + \ - ['TRIG_DELAY', 'TRIG_SELECT', 'TRIG_MODE', 'TRIG_PATTERN'] + \ + ['TRIG_DELAY', 'TRIG_SELECT', 'TRIG_MODE', 'TRIG_PATTERN', 'SEQUENCE'] + \ ['C%i:COUPLING' % i for i in range(1,5)] + \ ['C%i:VOLT_DIV' % i for i in range(1,5)] + \ ['C%i:OFFSET' % i for i in range(1,5)] + \ -- cgit