From: Uwe Hermann Date: Fri, 10 Apr 2020 23:32:56 +0000 (+0200) Subject: ad79x0: Rename the 'ref' option to 'vref'. X-Git-Url: http://sigrok.org/gitweb/?p=libsigrokdecode.git;a=commitdiff_plain;h=5b6fb5aee2237543fd9f26085d0ffa3631c6cb02 ad79x0: Rename the 'ref' option to 'vref'. --- diff --git a/decoders/ad79x0/pd.py b/decoders/ad79x0/pd.py index d966ed9..3d7ab73 100644 --- a/decoders/ad79x0/pd.py +++ b/decoders/ad79x0/pd.py @@ -54,7 +54,7 @@ class Decoder(srd.Decoder): ('data_validation', 'Data validation', (2,)), ) options = ( - {'id': 'ref', 'desc': 'Reference voltage', 'default': 1.5}, + {'id': 'vref', 'desc': 'Reference voltage (V)', 'default': 1.5}, ) def __init__(self,): @@ -108,7 +108,7 @@ class Decoder(srd.Decoder): self.put_validation([self.start_sample, es], 'complete') elif nb_bits < 16: self.put_validation([self.start_sample, es], 'incomplete') - vin = (self.data / ((2**12) - 1)) * self.options['ref'] + vin = (self.data / ((2**12) - 1)) * self.options['vref'] self.put_data([self.start_sample, es], vin) elif nb_bits < 10: self.put_mode([self.start_sample, es], 1)