X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=blobdiff_plain;f=decoders%2Frgb_led_ws281x%2Fpd.py;h=b4f7c581d7e8f14b971fef5a912a56c9c42be64b;hp=bdb454eb818f27ac321f76c0f82a673a317aca18;hb=10aeb8ea8b183394cebc0033f048f49f4262b57d;hpb=4539e9ca58966ce3c9cad4801b16c315e86ace01 diff --git a/decoders/rgb_led_ws281x/pd.py b/decoders/rgb_led_ws281x/pd.py index bdb454e..b4f7c58 100644 --- a/decoders/rgb_led_ws281x/pd.py +++ b/decoders/rgb_led_ws281x/pd.py @@ -24,7 +24,7 @@ class SamplerateError(Exception): pass class Decoder(srd.Decoder): - api_version = 2 + api_version = 3 id = 'rgb_led_ws281x' name = 'RGB LED (WS281x)' longname = 'RGB LED string decoder (WS281x)' @@ -46,6 +46,9 @@ class Decoder(srd.Decoder): ) def __init__(self): + self.reset() + + def reset(self): self.samplerate = None self.oldpin = None self.ss_packet = None @@ -70,11 +73,14 @@ class Decoder(srd.Decoder): self.bits = [] self.ss_packet = None - def decode(self, ss, es, data): + def decode(self): if not self.samplerate: raise SamplerateError('Cannot decode without samplerate.') - for (samplenum, (pin, )) in data: + while True: + # TODO: Come up with more appropriate self.wait() conditions. + (pin,) = self.wait() + if self.oldpin is None: self.oldpin = pin continue @@ -82,7 +88,7 @@ class Decoder(srd.Decoder): # Check RESET condition (manufacturer recommends 50 usec minimal, # but real minimum is ~10 usec). if not self.inreset and not pin and self.es is not None and \ - (samplenum - self.es) / self.samplerate > 50e-6: + (self.samplenum - self.es) / self.samplerate > 50e-6: # Decode last bit value. tH = (self.es - self.ss) / self.samplerate @@ -92,7 +98,7 @@ class Decoder(srd.Decoder): self.handle_bits(self.es) self.put(self.ss, self.es, self.out_ann, [0, ['%d' % bit_]]) - self.put(self.es, samplenum, self.out_ann, + self.put(self.es, self.samplenum, self.out_ann, [1, ['RESET', 'RST', 'R']]) self.inreset = True @@ -103,25 +109,25 @@ class Decoder(srd.Decoder): if not self.oldpin and pin: # Rising edge. if self.ss and self.es: - period = samplenum - self.ss + period = self.samplenum - self.ss duty = self.es - self.ss # Ideal duty for T0H: 33%, T1H: 66%. bit_ = (duty / period) > 0.5 - self.put(self.ss, samplenum, self.out_ann, + self.put(self.ss, self.samplenum, self.out_ann, [0, ['%d' % bit_]]) self.bits.append(bit_) - self.handle_bits(samplenum) + self.handle_bits(self.samplenum) if self.ss_packet is None: - self.ss_packet = samplenum + self.ss_packet = self.samplenum - self.ss = samplenum + self.ss = self.samplenum elif self.oldpin and not pin: # Falling edge. self.inreset = False - self.es = samplenum + self.es = self.samplenum self.oldpin = pin