summaryrefslogtreecommitdiff
path: root/decoders/uart/__init__.py
AgeCommit message (Collapse)Author
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-01-28All PDs: Improve/fix descriptions.Uwe Hermann
2013-09-12uart: Move OUTPUT_PROTO format description to pd.py.Uwe Hermann
This is information that a user (when viewing PD info in a GUI/CLI) should not see (and doesn't care to see), it is meant for developers only. Thus, make it a comment in pd.py instead.
2013-09-12uart: Drop extensive protocol info (moved to wiki).Uwe Hermann
Move the full details of the protocol to the wiki, the docs in the PD itself should only be a short description and/or a collection of notes that could be useful for a user in a GUI (or CLI) to decide which PD to select, which options to set how, what PDs to stack where, and so on. The full protocol description (including photos, examples, ...) is here: http://sigrok.org/wiki/Protocol_decoder:Uart
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-06-12srd: Cosmetics.Uwe Hermann
2012-03-04srd: PDs: More cosmetics.Uwe Hermann
2012-02-01srd: Move all protocol docs to __init__.py files.Uwe Hermann
2012-02-01srd: uart: Move protocol docs to __init__.py.Uwe Hermann
2012-01-15srd: Each PD now has its own subdirectory.Uwe Hermann