X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=blobdiff_plain;f=decoders%2Fmxc6225xu%2Fpd.py;h=c236070167a1e69b91f0d3c100062913e10adb39;hp=4a7e666f38ad673bd04c24957f022be43f2168c7;hb=780770f1295b7fdeb4481eb42623bad5da1e19a7;hpb=31f1a29687604b8da5a4a3c46a72f82fc783947b diff --git a/decoders/mxc6225xu/pd.py b/decoders/mxc6225xu/pd.py index 4a7e666..c236070 100644 --- a/decoders/mxc6225xu/pd.py +++ b/decoders/mxc6225xu/pd.py @@ -18,8 +18,6 @@ ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ## -# MEMSIC MXC6225XU protocol decoder - import sigrokdecode as srd # Definitions of various bits in MXC6225XU registers. @@ -70,20 +68,18 @@ class Decoder(srd.Decoder): license = 'gplv2+' inputs = ['i2c'] outputs = ['mxc6225xu'] - probes = [] optional_probes = [ {'id': 'int', 'name': 'INT', 'desc': 'DTOS interrupt output pin'}, ] - options = {} annotations = [ - ['Text', 'Human-readable text'], + ['text', 'Human-readable text'], ] def __init__(self, **kwargs): self.state = 'IDLE' def start(self): - # self.out_proto = self.register(srd.OUTPUT_PYTHON) + # self.out_python = self.register(srd.OUTPUT_PYTHON) self.out_ann = self.register(srd.OUTPUT_ANN) def putx(self, data):