]> sigrok.org Git - libsigrokdecode.git/commit
srd: Support for one or more optional probes.
authorUwe Hermann <redacted>
Thu, 10 May 2012 07:34:13 +0000 (09:34 +0200)
committerUwe Hermann <redacted>
Thu, 10 May 2012 07:34:13 +0000 (09:34 +0200)
commitdd93276bf6b7537b65cab270f66666bf23fbc585
treed0aa8d6b59fcb742e07d293833bac3e3fd822320
parent29590b14fc508a0b951ea0b87e98f7741808bab0
srd: Support for one or more optional probes.

In the protocol decoder you always get all required probes, then _all_
optional probes in the list of probes in the decode() call.

Example:

 (r1, r2, r3, o1, o2, o3, o4) = pins

In this case r1-r3 are required probes, o1-o4 are optional probes.
However, the value of valid/used/specified probes will be 0 or 1,
whereas the value of probes that were not specified/assigned by the user
will be (at the moment) 42.

The PD can check for a valid probe like this:

  if p in (0, 1):
    ...

Or check for an invalid probe:

  if (p > 1):
    ...

The value of 42 could change to be -1 or None later.
controller.c
decoder.c
type_logic.c