From: Uwe Hermann Date: Fri, 10 Apr 2020 19:56:40 +0000 (+0200) Subject: ltc26x7: Fix the default for the 'chip' option. X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=commitdiff_plain;h=9fcac08ecbca6f72b96af985b5f513012d237a49 ltc26x7: Fix the default for the 'chip' option. --- diff --git a/decoders/ltc26x7/pd.py b/decoders/ltc26x7/pd.py index e0c6a7d..7883ccc 100644 --- a/decoders/ltc26x7/pd.py +++ b/decoders/ltc26x7/pd.py @@ -52,7 +52,7 @@ class Decoder(srd.Decoder): outputs = [] tags = ['IC', 'Analog/digital'] options = ( - {'id': 'chip', 'desc': 'Chip', 'default': 'ltc26x7', + {'id': 'chip', 'desc': 'Chip', 'default': 'ltc2607', 'values': ('ltc2607', 'ltc2617', 'ltc2627')}, {'id': 'vref', 'desc': 'Reference voltage (V)', 'default': 1.5}, )