summaryrefslogtreecommitdiff
path: root/decoders/jitter
AgeCommit message (Collapse)Author
2019-04-02decoders: Fix incorrect 'outputs' fields.Uwe Hermann
Only add items to 'outputs' if the respective PD actually has OUTPUT_PYTHON support implemented as of right now. Various decoders might get OUTPUT_PYTHON support later, but the 'outputs' field should reflect the current status.
2019-03-16decoders: Various cosmetic/consistency/typo fixes.Uwe Hermann
2019-03-15decoders: Add/update tags for each PD.Uwe Hermann
2017-12-22all decoders: introduce a reset() methodGerhard Sittig
Move initialization code of protocol decoders from the constructor to a new reset() helper method. The libsigrokdecode backend could run this method several times to clear the decoder's internal state, before new data from another acquisition gets fed to decode() calls.
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.
2016-12-07jitter: Convert to PD API version 3.Uwe Hermann
2016-05-15Use consistent __init__() format across all PDs.Uwe Hermann
The previous **kwargs some PDs had is not actually ever used, so drop it.
2016-05-09Consistently use ' instead of " for strings in all PDs.Uwe Hermann
2015-12-24Use self.out_binary naming consistently across all PDs.Uwe Hermann
2015-12-24Use a Python list (not tuple) for OUT_BINARY.Uwe Hermann
This is more consistent with annotation syntax and looks slightly better in most cases.
2015-09-15jitter, pwm: Avoid Unicode string literalsDaniel Elstner
It seems the Python we ship along our Windows binaries does not support u"..." strings, even though it's been a language feature since Python 2. Remove the "u" prefix to avoid a syntax error. Also, consistently use format "%.1f" at all scales. This fixes bug #569.
2014-11-23jitter: Simplify ascii-float binary out.Uwe Hermann
This also outputs one item of OUT_BINARY per jitter value (not one item per ASCII character in the ASCII floating point number).
2014-11-23jitter: Rename "jitter" binary out to "ascii-float".Uwe Hermann
2014-11-23jitter: add a binary output to report the raw jitter value.Sebastien Bourdelin
Signed-off-by: Sebastien Bourdelin <sebastien.bourdelin@savoirfairelinux.com>
2014-11-23jitter: fixes an error when a miss clock/signal is detectedSebastien Bourdelin
Signed-off-by: Sebastien Bourdelin <sebastien.bourdelin@savoirfairelinux.com>
2014-11-09jitter: Factor out handle_clk() and handle_sig().Uwe Hermann
2014-11-09Add a timing jitter decoder.Sebastien Bourdelin
Signed-off-by: Sebastien Bourdelin <sebastien.bourdelin@savoirfairelinux.com>