summaryrefslogtreecommitdiff
path: root/decoders/microwire
AgeCommit message (Collapse)Author
2018-03-31microwire: introduce constructor and reset() methodGerhard Sittig
The "microwire" decoder used to have no constructor, which made me miss it when reset() got introduced. Implement those two methods (which do nothing, and thus won't change behaviour).
2017-05-06microwire/eeprom93cxx: Use 'es' instead of 'se' abbrevation.Uwe Hermann
(for consistency with all other decoders)
2017-05-05microwire: Use namedtuple in some more cases.Uwe Hermann
2017-05-05microwire: Use namedtuple for the Python output.Uwe Hermann
This has two advantages: - The Python output is always deterministic, which was not the case for the dict-based version since dict items have no guaranteed order in Python. This caused issues with the sigrok-test use-case. - The code is slightly more readable.
2017-05-05microwire: Drop some trailing whitespace.Uwe Hermann
2017-05-05microwire: Shorten decode() a bit.Uwe Hermann
2017-05-05microwire: Make Ready/Busy extra annotation classes.Uwe Hermann
2017-05-05microwire: Make the start bit an extra annotation class.Uwe Hermann
2017-05-05Add a Microwire protocol decoder.Kevin Redon
This fixes parts of bug #931.