]> sigrok.org Git - libsigrokdecode.git/blobdiff - decoders/tca6408a/pd.py
Remove samplerate from srd_decoder_logic_output_channel
[libsigrokdecode.git] / decoders / tca6408a / pd.py
index 3b0556f5df51767fa4b4ec661585da895b44e595..fdfebeddb23d92a26b31a98248993c4b7a405951 100644 (file)
@@ -26,7 +26,7 @@ NUM_OUTPUT_CHANNELS = 8
 def logic_channels(num_channels):
     l = []
     for i in range(num_channels):
-        l.append(tuple(['p%d' % i, 'P-port input/output %d' % i, 100000]))
+        l.append(tuple(['p%d' % i, 'P-port input/output %d' % i]))
     return tuple(l)
 
 class Decoder(srd.Decoder):