summaryrefslogtreecommitdiff
path: root/decoders/jitter/pd.py
AgeCommit message (Collapse)Author
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>