diff options
author | Bert Vermeulen <bert@biot.com> | 2012-01-15 23:20:39 +0100 |
---|---|---|
committer | Bert Vermeulen <bert@biot.com> | 2012-01-15 23:25:58 +0100 |
commit | 86528298fa2abfe825d6763b806095972e8bd8f4 (patch) | |
tree | 3960705cb28fdb72d8986569aed8d200c582b6d6 /type_decoder.c | |
parent | a2c2afd9357fab233a4f09531618faa81d54d4d9 (diff) | |
download | libsigrokdecode-86528298fa2abfe825d6763b806095972e8bd8f4.tar.gz libsigrokdecode-86528298fa2abfe825d6763b806095972e8bd8f4.zip |
srd: PDs now get a logic feed with sample numbers, not time/duration
Diffstat (limited to 'type_decoder.c')
-rw-r--r-- | type_decoder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/type_decoder.c b/type_decoder.c index 34b414e..e1e6796 100644 --- a/type_decoder.c +++ b/type_decoder.c @@ -177,7 +177,7 @@ static PyObject *Decoder_add(PyObject *self, PyObject *args) static PyMethodDef Decoder_methods[] = { {"put", Decoder_put, METH_VARARGS, - "Accepts a dictionary with the following keys: time, duration, data"}, + "Accepts a dictionary with the following keys: startsample, endsample, data"}, {"add", Decoder_add, METH_VARARGS, "Create a new output stream"}, {NULL, NULL, 0, NULL} }; |