From: Uwe Hermann Date: Fri, 10 Apr 2020 22:41:11 +0000 (+0200) Subject: ad5626: Always use the same number of decimal places. X-Git-Url: https://sigrok.org/gitaction?a=commitdiff_plain;h=d1b0d3a3407dc774de860ff92ba904117bc1e48a;p=libsigrokdecode.git ad5626: Always use the same number of decimal places. --- diff --git a/decoders/ad5626/pd.py b/decoders/ad5626/pd.py index 453ee20..cffee83 100644 --- a/decoders/ad5626/pd.py +++ b/decoders/ad5626/pd.py @@ -43,9 +43,6 @@ class Decoder(srd.Decoder): def start(self): self.out_ann = self.register(srd.OUTPUT_ANN) - def put_data(self, pos, data): - self.put(pos[0], pos[1], self.out_ann, [0, [str(data) + 'V']]) - def decode(self, ss, es, data): ptype = data[0] @@ -54,7 +51,7 @@ class Decoder(srd.Decoder): if cs_old is not None and cs_old == 0 and cs_new == 1: self.data >>= 1 self.data /= 1000 - self.put_data([self.ss, es], self.data) + self.put(self.ss, es, self.out_ann, [0, ['%.3fV' % self.data]]) self.data = 0 elif cs_old is not None and cs_old == 1 and cs_new == 0: self.ss = ss