From: Uwe Hermann Date: Wed, 9 Oct 2013 17:48:17 +0000 (+0200) Subject: lpc: Make the RESET# pin optional. X-Git-Tag: libsigrokdecode-0.3.0~273 X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=commitdiff_plain;h=6554fbc9e135916909ea3cdb6b4d35e73b7daa07 lpc: Make the RESET# pin optional. --- diff --git a/decoders/lpc/pd.py b/decoders/lpc/pd.py index 7664156..adcac1d 100644 --- a/decoders/lpc/pd.py +++ b/decoders/lpc/pd.py @@ -108,7 +108,6 @@ class Decoder(srd.Decoder): outputs = ['lpc'] probes = [ {'id': 'lframe', 'name': 'LFRAME#', 'desc': 'TODO'}, - {'id': 'lreset', 'name': 'LRESET#', 'desc': 'TODO'}, {'id': 'lclk', 'name': 'LCLK', 'desc': 'TODO'}, {'id': 'lad0', 'name': 'LAD[0]', 'desc': 'TODO'}, {'id': 'lad1', 'name': 'LAD[1]', 'desc': 'TODO'}, @@ -116,6 +115,7 @@ class Decoder(srd.Decoder): {'id': 'lad3', 'name': 'LAD[3]', 'desc': 'TODO'}, ] optional_probes = [ + {'id': 'lreset', 'name': 'LRESET#', 'desc': 'TODO'}, {'id': 'ldrq', 'name': 'LDRQ#', 'desc': 'TODO'}, {'id': 'serirq', 'name': 'SERIRQ', 'desc': 'TODO'}, {'id': 'clkrun', 'name': 'CLKRUN#', 'desc': 'TODO'}, @@ -308,8 +308,8 @@ class Decoder(srd.Decoder): self.oldpins = pins # Get individual pin values into local variables. - (lframe, lreset, lclk, lad0, lad1, lad2, lad3) = pins[:7] - (ldrq, serirq, clkrun, lpme, lpcpd, lsmi) = pins[7:] + (lframe, lclk, lad0, lad1, lad2, lad3) = pins[:6] + (lreset, ldrq, serirq, clkrun, lpme, lpcpd, lsmi) = pins[6:] # 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).