summaryrefslogtreecommitdiff
path: root/decoders/mx25lxx05d.py
AgeCommit message (Collapse)Author
2012-01-15srd: Decoders: Remove author/email fields.Uwe Hermann
We decided it's too much hassle to deal with this in GUIs (multiple fields, multiple name and email addresses and copyright years etc. etc) with too little gain. The authors/emails etc. are already in the .py file's license header and in git anyway.
2012-01-14Improve 'longname' PD strings, use in 'sigrok-cli -V'.Uwe Hermann
2012-01-14srd: mx25lxx05d: Update to new API, make it work.Uwe Hermann
This works (partially) with output from the 'spi' protocol decoder.
2012-01-12srd: decoders: Rename obsolete timeoffset/duration.Uwe Hermann
2012-01-12srd: decoders: Metadata consistency fixes/updates.Uwe Hermann
2012-01-12srd: Drop duplicate SRD_ prefix from ANN/PROTO.Uwe Hermann
Using srd.SRD_OUTPUT_ANN is unneeded, srd.OUTPUT_ANN is better/shorter.
2012-01-10srd: Drop useless out_ann/out_proto init.Uwe Hermann
If those variables are used before start() was called, that's a bug anyway.
2012-01-10srd: Use 'import sigrokdecode as srd' for brevity.Uwe Hermann
2012-01-10srd: Finish consistency rename to ANN/PROTO.Uwe Hermann
2012-01-10srd: self.add: Use sigrokdecode.SRD_OUTPUT_*.Uwe Hermann
2012-01-10srd: output_{protocol,annotation} -> out_{proto,ann}.Uwe Hermann
2012-01-10srd: s/output_new/add/ for all decoders.Uwe Hermann
2012-01-05srd: Update mx25lxx05d.py to new API.Uwe Hermann
2012-01-03srd: *.py: Remove one incorrect ord() call.Uwe Hermann
While 'data' is of type 'bytes', 'data[0]' for example is of type 'int', thus the ord() there is neither needed nor correct anymore (yields an error).
2012-01-03srd: Quick hack to make mx25lxx05d.py work again.Uwe Hermann
In Python 3 there's no xrange() anymore, only range().
2011-12-17srd: Add MX25Lxx05D SPI chip decoder.Uwe Hermann
Work in progress, not yet fully functional.