]> sigrok.org Git - libsigrokdecode.git/commitdiff
srd: Fix non-working PAN1321 decoder.
authorUwe Hermann <redacted>
Wed, 13 Jun 2012 17:09:05 +0000 (19:09 +0200)
committerUwe Hermann <redacted>
Wed, 13 Jun 2012 23:21:00 +0000 (01:21 +0200)
decoders/pan1321/pan1321.py

index da981f25438f098734c18d12fa26fc4977923f4f..773e02dd346131cf4725175ee0d3bb281742ae60 100644 (file)
@@ -56,30 +56,30 @@ class Decoder(srd.Decoder):
         if s.startswith('AT+JSEC'):
             pin = s[-4:]
             self.put(ss, es, self.out_ann,
-                     [ANN_ASCII, ['Host set the Bluetooth PIN to ' + pin]])
+                     [0, ['Host set the Bluetooth PIN to ' + pin]])
         elif s.startswith('AT+JSLN'):
             name = s[s.find(',') + 1:]
             self.put(ss, es, self.out_ann,
-                     [ANN_ASCII, ['Host set the Bluetooth name to ' + name]])
+                     [0, ['Host set the Bluetooth name to ' + name]])
         else:
             self.put(ss, es, self.out_ann,
-                     [ANN_ASCII, ['Host sent unsupported command: %s' % s]])
+                     [0, ['Host sent unsupported command: %s' % s]])
         self.cmd[rxtx] = ''
 
     def handle_device_reply(self, ss, es, rxtx, s):
         if s == 'ROK':
             self.put(ss, es, self.out_ann,
-                     [ANN_ASCII, ['Device initialized correctly']])
+                     [0, ['Device initialized correctly']])
         elif s == 'OK':
             self.put(ss, es, self.out_ann,
-                     [ANN_ASCII, ['Device acknowledged last command']])
+                     [0, ['Device acknowledged last command']])
         elif s.startswith('ERR'):
             error = s[s.find('=') + 1:]
             self.put(ss, es, self.out_ann,
-                     [ANN_ASCII, ['Device sent error code ' + error]])
+                     [0, ['Device sent error code ' + error]])
         else:
             self.put(ss, es, self.out_ann,
-                     [ANN_ASCII, ['Device sent an unknown reply: %s' % s]])
+                     [0, ['Device sent an unknown reply: %s' % s]])
         self.cmd[rxtx] = ''
 
     def decode(self, ss, es, data):