summaryrefslogtreecommitdiff
path: root/decoders/onewire_link/__init__.py
AgeCommit message (Collapse)Author
2019-03-16decoders: Various cosmetic/consistency/typo fixes.Uwe Hermann
2017-04-07Implement new 1-Wire link decoder using time rangesKing Kévin
Rewrite of the 1-Wire link decoder. Existing outputs are kept and new warnings are added. Instead of sampling at fixed user defined time, time ranges as specified by the "Book of iButton Standards" are used. The user does not have to tweak the timing values anymore. Overdrive speed is detected automatically. This fixes bugs #666 and #926.
2017-01-07license: remove FSF postal address from boiler plate license textGerhard Sittig
Remove the FSF postal address as it might change (it did in the past). Reference the gnu.org website instead which is more stable.
2014-10-13All PDs: Only import the 'Decoder' object.Uwe Hermann
Anything else in the pd.py files doesn't have to be imported/exposed.
2014-07-15All PDs: Minor whitespace and consistency fixes.Uwe Hermann
- No newlines at the end of files. - No trailing ';' characters. - Comparison with None: Use 'is None' or 'is not None'. - Comparison with True/False: Use 'if cond:' or 'if not cond:'. - Various minor whitespace fixes.
2014-04-13Rename 'probe' to 'channel' everywhere.Uwe Hermann
Variables of type 'struct srd_channel *' are consistently named 'pdch' to make them easily distinguishable from libsigrok's 'struct sr_channel *' variables that are consistently named 'ch'.
2014-01-28All PDs: Improve/fix descriptions.Uwe Hermann
2013-10-08onewire_link: Drop PD info not useful for the user.Uwe Hermann
2013-04-23GPL headers: Use correct project name.Uwe Hermann
2012-11-24All PDs: Name the files pd.py consistently.Uwe Hermann
The Python module name is determined by the directory name (e.g. dcf77), the *.py file names in that directory don't matter and can be kept consistent.
2012-07-21srd: onewire_link: Cosmetics, simplifications, doc fixes.Uwe Hermann
2012-07-17onewire: added new transport layer commandsIztok Jeras
2012-07-17onewire: updated documentationIztok Jeras
2012-07-15onewire: the split of the protocol into layers works nowIztok Jeras
2012-07-15onewire: placing protocol layers into separate directoriesIztok Jeras