]> sigrok.org Git - libsigrokdecode.git/commitdiff
lpc: Fix handling of optional probes.
authorUwe Hermann <redacted>
Wed, 9 Oct 2013 17:24:48 +0000 (19:24 +0200)
committerUwe Hermann <redacted>
Sun, 13 Oct 2013 11:48:34 +0000 (13:48 +0200)
decoders/lpc/pd.py

index 398bf9b582e20c19e28087525afe9289420185d1..7664156eefce18668f01620a6056a683e6a19f73 100644 (file)
@@ -140,7 +140,7 @@ class Decoder(srd.Decoder):
         self.databyte = 0
         self.tarcount = 0
         self.synccount = 0
-        self.oldpins = (-1, -1, -1, -1, -1, -1, -1)
+        self.oldpins = None
 
     def start(self, metadata):
         # self.out_proto = self.add(srd.OUTPUT_PROTO, 'lpc')
@@ -308,8 +308,8 @@ class Decoder(srd.Decoder):
             self.oldpins = pins
 
             # Get individual pin values into local variables.
-            # TODO: Handle optional pins.
-            (lframe, lreset, lclk, lad0, lad1, lad2, lad3) = pins
+            (lframe, lreset, lclk, lad0, lad1, lad2, lad3) = pins[:7]
+            (ldrq, serirq, clkrun, lpme, lpcpd, lsmi) = pins[7:]
 
             # Only look at the signals upon rising LCLK edges. The LPC clock
             # is the same as the PCI clock (which is sampled at rising edges).