Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-03-15 | decoders: Add/update tags for each PD. | Uwe Hermann | |
2018-03-31 | microwire: introduce constructor and reset() method | Gerhard 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-06 | microwire/eeprom93cxx: Use 'es' instead of 'se' abbrevation. | Uwe Hermann | |
(for consistency with all other decoders) | |||
2017-05-05 | microwire: Use namedtuple in some more cases. | Uwe Hermann | |
2017-05-05 | microwire: 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-05 | microwire: Drop some trailing whitespace. | Uwe Hermann | |
2017-05-05 | microwire: Shorten decode() a bit. | Uwe Hermann | |
2017-05-05 | microwire: Make Ready/Busy extra annotation classes. | Uwe Hermann | |
2017-05-05 | microwire: Make the start bit an extra annotation class. | Uwe Hermann | |
2017-05-05 | Add a Microwire protocol decoder. | Kevin Redon | |
This fixes parts of bug #931. |