]> sigrok.org Git - libsigrokdecode.git/blame - decoders/gpib/pd.py
gpib: Convert to PD API version 3
[libsigrokdecode.git] / decoders / gpib / pd.py
CommitLineData
ffd58b68
RR
1##
2## This file is part of the libsigrokdecode project.
3##
4## Copyright (C) 2016 Rudolf Reuter <reuterru@arcor.de>
5##
6## This program is free software; you can redistribute it and/or modify
7## it under the terms of the GNU General Public License as published by
8## the Free Software Foundation; either version 2 of the License, or
9## (at your option) any later version.
10##
11## This program is distributed in the hope that it will be useful,
12## but WITHOUT ANY WARRANTY; without even the implied warranty of
13## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14## GNU General Public License for more details.
15##
16## You should have received a copy of the GNU General Public License
4539e9ca 17## along with this program; if not, see <http://www.gnu.org/licenses/>.
ffd58b68
RR
18##
19
20import sigrokdecode as srd
21
22class Decoder(srd.Decoder):
3b5b9ad2 23 api_version = 3
ffd58b68
RR
24 id = 'gpib'
25 name = 'GPIB'
26 longname = 'General Purpose Interface Bus'
27 desc = 'IEEE-488 GPIB / HPIB protocol.'
28 license = 'gplv2+'
29 inputs = ['logic']
30 outputs = ['gpib']
31 channels = (
32 {'id': 'dio1' , 'name': 'DIO1', 'desc': 'Data I/O bit 1'},
33 {'id': 'dio2' , 'name': 'DIO2', 'desc': 'Data I/O bit 2'},
34 {'id': 'dio3' , 'name': 'DIO3', 'desc': 'Data I/O bit 3'},
35 {'id': 'dio4' , 'name': 'DIO4', 'desc': 'Data I/O bit 4'},
36 {'id': 'dio5' , 'name': 'DIO5', 'desc': 'Data I/O bit 5'},
37 {'id': 'dio6' , 'name': 'DIO6', 'desc': 'Data I/O bit 6'},
38 {'id': 'dio7' , 'name': 'DIO7', 'desc': 'Data I/O bit 7'},
39 {'id': 'dio8' , 'name': 'DIO8', 'desc': 'Data I/O bit 8'},
40 {'id': 'eoi', 'name': 'EOI', 'desc': 'End or identify'},
41 {'id': 'dav', 'name': 'DAV', 'desc': 'Data valid'},
42 {'id': 'nrfd', 'name': 'NRFD', 'desc': 'Not ready for data'},
43 {'id': 'ndac', 'name': 'NDAC', 'desc': 'Not data accepted'},
44 {'id': 'ifc', 'name': 'IFC', 'desc': 'Interface clear'},
45 {'id': 'srq', 'name': 'SRQ', 'desc': 'Service request'},
46 {'id': 'atn', 'name': 'ATN', 'desc': 'Attention'},
47 {'id': 'ren', 'name': 'REN', 'desc': 'Remote enable'},
48 )
49 options = (
50 {'id': 'sample_total', 'desc': 'Total number of samples', 'default': 0},
51 )
52 annotations = (
53 ('items', 'Items'),
54 ('gpib', 'DAT/CMD'),
55 ('eoi', 'EOI'),
56 )
57 annotation_rows = (
58 ('bytes', 'Bytes', (0,)),
59 ('gpib', 'DAT/CMD', (1,)),
60 ('eoi', 'EOI', (2,)),
61 )
62
63 def __init__(self):
ffd58b68
RR
64 self.items = []
65 self.itemcount = 0
66 self.saved_item = None
67 self.saved_ATN = False
68 self.saved_EOI = False
69 self.samplenum = 0
ffd58b68
RR
70 self.ss_item = self.es_item = None
71 self.first = True
72
73 def start(self):
74 self.out_ann = self.register(srd.OUTPUT_ANN)
75
76 def putb(self, data):
77 self.put(self.ss_item, self.es_item, self.out_ann, data)
78
79 def handle_bits(self, datapins):
80 dbyte = 0x20
81 dATN = False
82 item2 = False
83 dEOI = False
84 item3 = False
85 # If this is the first item in a word, save its sample number.
86 if self.itemcount == 0:
87 self.ss_word = self.samplenum
88
89 # Get the bits for this item.
90 item = 0
91 for i in range(8):
92 item |= datapins[i] << i
93
94 item = item ^ 0xff # Invert data byte.
95 self.items.append(item)
96 self.itemcount += 1
97
98 if datapins[14] == 0:
99 item2 = True
100 if datapins[8] == 0:
101 item3 = True
102
103 if self.first:
104 # Save the start sample and item for later (no output yet).
105 self.ss_item = self.samplenum
106 self.first = False
107 self.saved_item = item
108 self.saved_ATN = item2
109 self.saved_EOI = item3
110 else:
111 # Output the saved item.
112 dbyte = self.saved_item
113 dATN = self.saved_ATN
114 dEOI = self.saved_EOI
115 self.es_item = self.samplenum
116 self.putb([0, ['%02X' % self.saved_item]])
117
118 # Encode item byte to GPIB convention.
119 self.strgpib = ' '
120 if dATN: # ATN, decode commands.
121 if dbyte == 0x01: self.strgpib = 'GTL'
122 if dbyte == 0x04: self.strgpib = 'SDC'
123 if dbyte == 0x05: self.strgpib = 'PPC'
124 if dbyte == 0x08: self.strgpib = 'GET'
125 if dbyte == 0x09: self.strgpib = 'TCT'
126 if dbyte == 0x11: self.strgpib = 'LLO'
127 if dbyte == 0x14: self.strgpib = 'DCL'
128 if dbyte == 0x15: self.strgpib = 'PPU'
129 if dbyte == 0x18: self.strgpib = 'SPE'
130 if dbyte == 0x19: self.strgpib = 'SPD'
131 if dbyte == 0x3f: self.strgpib = 'UNL'
132 if dbyte == 0x5f: self.strgpib = 'UNT'
133 if dbyte > 0x1f and dbyte < 0x3f: # Address Listener.
134 self.strgpib = 'L' + chr(dbyte + 0x10)
135 if dbyte > 0x3f and dbyte < 0x5f: # Address Talker
136 self.strgpib = 'T' + chr(dbyte - 0x10)
137 else:
138 if dbyte > 0x1f and dbyte < 0x7f:
139 self.strgpib = chr(dbyte)
140 if dbyte == 0x0a:
141 self.strgpib = 'LF'
142 if dbyte == 0x0d:
143 self.strgpib = 'CR'
144
145 self.putb([1, [self.strgpib]])
146 self.strEOI = ' '
147 if dEOI:
148 self.strEOI = 'EOI'
149 self.putb([2, [self.strEOI]])
150
151 self.ss_item = self.samplenum
152 self.saved_item = item
153 self.saved_ATN = item2
154 self.saved_EOI = item3
155
156 if self.itemcount < 16:
157 return
158
159 self.itemcount, self.items = 0, []
160
3b5b9ad2 161 def decode(self):
ffd58b68 162
3b5b9ad2
GS
163 # Inspect samples at falling edge of DAV. But make sure to also
164 # start inspection when the capture happens to start with low
165 # DAV level. Optionally enforce processing when a user specified
166 # sample number was reached.
167 waitcond = [{9: 'l'}]
ffd58b68 168 lsn = self.options['sample_total']
3b5b9ad2
GS
169 if lsn:
170 waitcond.append({'skip': lsn})
171 while True:
172 if lsn:
173 waitcond[1]['skip'] = lsn - self.samplenum - 1
174 pins = self.wait(waitcond)
175 self.handle_bits(pins)
176 waitcond[0][9] = 'f'