]> sigrok.org Git - libsigrokdecode.git/log
libsigrokdecode.git
9 years agoDrop references to obsolete sigrok-commits mailing list.
Uwe Hermann [Tue, 22 Jul 2014 22:00:33 +0000 (00:00 +0200)]
Drop references to obsolete sigrok-commits mailing list.

9 years agoruntc: Update to the new libsigrok session API.
Uwe Hermann [Sun, 20 Jul 2014 11:16:30 +0000 (13:16 +0200)]
runtc: Update to the new libsigrok session API.

(also fixes the build for libsigrokdecode)

9 years agoFix incorrect doxygen comment for srd_decoder_list().
Uwe Hermann [Sun, 20 Jul 2014 09:31:27 +0000 (11:31 +0200)]
Fix incorrect doxygen comment for srd_decoder_list().

This fixes bug #378.

9 years agoAll PDs: Minor whitespace and consistency fixes.
Uwe Hermann [Tue, 15 Jul 2014 20:49:43 +0000 (22:49 +0200)]
All PDs: Minor whitespace and consistency fixes.

 - 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.

9 years agouart/i2cfilter: Don't check multiple-choice options.
Uwe Hermann [Wed, 9 Jul 2014 15:31:32 +0000 (17:31 +0200)]
uart/i2cfilter: Don't check multiple-choice options.

For options which only have a limited set of valid values, we don't need
to check (in the PD) whether a valid value was supplied, since the backend
can do that for us.

9 years agoVarious PDs: Minor consistency fixes.
Uwe Hermann [Tue, 8 Jul 2014 19:36:53 +0000 (21:36 +0200)]
Various PDs: Minor consistency fixes.

(Consistently use single-quotes for all Python strings everywhere)

9 years agoVarious PDs: Throw SamplerateError instead of Exception.
Uwe Hermann [Tue, 8 Jul 2014 19:32:32 +0000 (21:32 +0200)]
Various PDs: Throw SamplerateError instead of Exception.

Also, use the "if not self.samplerate" form, which catches both the case
where self.samplerate is None, as well as the case where it is 0.

9 years agoAll PDs: Drop unneeded exceptions.
Uwe Hermann [Tue, 8 Jul 2014 19:21:03 +0000 (21:21 +0200)]
All PDs: Drop unneeded exceptions.

In all current PDs it is not necessary to raise an exception upon
invalid states (of the PD's state machine), since we can guarantee that
no such invalid state can ever be reached in these PDs.

9 years agoAdd nRF24L01(+) protocol decoder.
Jens Steinhauser [Tue, 8 Jul 2014 20:15:30 +0000 (22:15 +0200)]
Add nRF24L01(+) protocol decoder.

9 years agospi: Fix order of MISO/MOSI data items.
Jens Steinhauser [Tue, 8 Jul 2014 15:48:56 +0000 (17:48 +0200)]
spi: Fix order of MISO/MOSI data items.

9 years agopdtest: Use new exception output.
Bert Vermeulen [Tue, 8 Jul 2014 19:43:58 +0000 (21:43 +0200)]
pdtest: Use new exception output.

9 years agoMake exception output more predictable.
Bert Vermeulen [Tue, 8 Jul 2014 19:43:33 +0000 (21:43 +0200)]
Make exception output more predictable.

9 years agoRemove dependency on Python.h from public API header
Marcus Comstedt [Mon, 30 Jun 2014 22:07:40 +0000 (00:07 +0200)]
Remove dependency on Python.h from public API header

This prevents Python.h from being included into client code, where
it can mess things up by e.g. redefining _POSIX_C_SOURCE.

9 years agoruntc: Fix incorrect include directive
Marcus Comstedt [Sun, 29 Jun 2014 09:38:50 +0000 (11:38 +0200)]
runtc: Fix incorrect include directive

runtc.c used to try to include "../config.h".  This only works when
building in the source tree, otherwise there is no config.h in the
parent directory of runtc.c.  However, the explicit path is
unnecessary since the build directory (whether the same as the source
directory or not) will always be added to the include path.

9 years agosrd_decoder_load_all_path: Support zipimport paths
Marcus Comstedt [Sun, 6 Jul 2014 23:36:22 +0000 (01:36 +0200)]
srd_decoder_load_all_path: Support zipimport paths

srd_decoder_load() works perfectly with decoders stored inside zip files.
However, srd_decoder_load_all{_path,}() did not, because it assumed that
normal directory listings can be used to enumerate decoders, which is not
the case for zipped decoders.  Fix this by providing a fallback based on
the zipimporter Python class.

9 years agospi: Add coverage tests for all exceptions.
Bert Vermeulen [Fri, 27 Jun 2014 16:45:46 +0000 (18:45 +0200)]
spi: Add coverage tests for all exceptions.

9 years agospi: Add coverage tests for all mosi/miso and lsb/msb combinations.
Bert Vermeulen [Fri, 27 Jun 2014 16:45:01 +0000 (18:45 +0200)]
spi: Add coverage tests for all mosi/miso and lsb/msb combinations.

9 years agospi: Refactor for more coverage, and remove dead code.
Bert Vermeulen [Fri, 27 Jun 2014 16:37:58 +0000 (18:37 +0200)]
spi: Refactor for more coverage, and remove dead code.

9 years agoruntc: PD option value is a GVariant, not string.
Bert Vermeulen [Thu, 26 Jun 2014 17:56:02 +0000 (19:56 +0200)]
runtc: PD option value is a GVariant, not string.

This is still broken: it needs to properly check the expected type of
the option, not just blindly assume G_VARIANT_TYPE_STRING.

9 years agopdtest: Generate report regardless of verbose mode.
Bert Vermeulen [Tue, 24 Jun 2014 16:17:22 +0000 (18:17 +0200)]
pdtest: Generate report regardless of verbose mode.

9 years agoedid: Add another test, covering more code in the PD.
Bert Vermeulen [Tue, 24 Jun 2014 14:04:45 +0000 (16:04 +0200)]
edid: Add another test, covering more code in the PD.

9 years agopdtest: Generate a report listing missed lines across the whole PD.
Bert Vermeulen [Tue, 24 Jun 2014 13:49:05 +0000 (15:49 +0200)]
pdtest: Generate a report listing missed lines across the whole PD.

9 years agoi2c: Generate proper exception for missing samplerate, and test for it.
Bert Vermeulen [Mon, 23 Jun 2014 17:52:45 +0000 (19:52 +0200)]
i2c: Generate proper exception for missing samplerate, and test for it.

Also remove some dead code.

9 years agopdtest/runtc: Support for output type 'exception'.
Bert Vermeulen [Mon, 23 Jun 2014 17:49:47 +0000 (19:49 +0200)]
pdtest/runtc: Support for output type 'exception'.

The match value should be the name of the exception thrown, e.g.
AttributeError, IndexError or even a custom exception defined in
the protocol decoder, such as SamplerateError.

9 years agodo not add check to common cflags/libs
Mike Frysinger [Sat, 14 Jun 2014 05:54:11 +0000 (01:54 -0400)]
do not add check to common cflags/libs

Only the unittests use these flags, so don't go linking them in for
the main library too.

9 years agofix test operator
Mike Frysinger [Sat, 14 Jun 2014 05:54:10 +0000 (01:54 -0400)]
fix test operator

The == operator is not in POSIX.

9 years agoruntc.c: Fix compiler warning
Kumar Abhishek [Fri, 9 May 2014 21:32:06 +0000 (04:32 +0700)]
runtc.c: Fix compiler warning

c was of type char, while getopt returns an int. This
caused a compiler warning during build.

9 years agolibsigrokdecode: Fix make -j issue with build_runtc
Kumar Abhishek [Fri, 9 May 2014 21:32:05 +0000 (04:32 +0700)]
libsigrokdecode: Fix make -j issue with build_runtc

The build of runtc caused issues with make -j as runtc
was attempted to be linked with libsigrokdecode before
libsigrokdecode was linked. Using LDADD to insert
libsigrokdecode ensures that it links before runtc,
ensuring the build completes correctly.

9 years agoAdd python as a pkg-config dependency
Abhishek Kumar [Thu, 8 May 2014 23:05:00 +0000 (06:05 +0700)]
Add python as a pkg-config dependency

The current libsigrokdecode build passes the python
CPPFLAGS and LDFLAGS directly into libsigrokdecode.pc.in.
This leads to issues while cross-compiling as while using
PKG_CONFIG_SYSROOT_DIR, there is a chance of the prefix
being duplicated. We now, while detecting the installation
of python (cross or normal), add a dependency for the
module name in the pkgconfig file (from configure.ac).

9 years agoconfigure.ac: Bump package version to 0.3.0.
Uwe Hermann [Tue, 6 May 2014 21:05:28 +0000 (23:05 +0200)]
configure.ac: Bump package version to 0.3.0.

9 years agoconfigure.ac: Bump libtool/library version from 1:0:0 to 2:0:0.
Uwe Hermann [Tue, 6 May 2014 21:03:10 +0000 (23:03 +0200)]
configure.ac: Bump libtool/library version from 1:0:0 to 2:0:0.

The libtool current:revision:age numbers change from 1:0:0 to 2:0:0.

Details:
http://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info

This changes the library filename (e.g. on Linux) from
libsigrokdecode.so.1.0.0 to libsigrokdecode.so.2.0.0, the SONAME (+symlink)
becomes libsigrokdecode.so.2.

9 years agoBump libsigrok (optional) dependency to 0.3.0.
Uwe Hermann [Tue, 6 May 2014 21:06:57 +0000 (23:06 +0200)]
Bump libsigrok (optional) dependency to 0.3.0.

9 years agoNEWS: Add list of user-visible changes so far.
Uwe Hermann [Tue, 6 May 2014 07:00:00 +0000 (09:00 +0200)]
NEWS: Add list of user-visible changes so far.

9 years agoMakefile.am: Add HACKING to the tarball.
Uwe Hermann [Tue, 15 Apr 2014 16:30:28 +0000 (18:30 +0200)]
Makefile.am: Add HACKING to the tarball.

9 years agoOnly load and use PDs of API version 2.
Uwe Hermann [Sun, 4 May 2014 21:46:21 +0000 (23:46 +0200)]
Only load and use PDs of API version 2.

Decoders that implement any other PD API version are per definition not
compatible and cannot work with this library version.

9 years agoREADME: Document python3-coverage requirement for tests.
Uwe Hermann [Sun, 4 May 2014 20:29:18 +0000 (22:29 +0200)]
README: Document python3-coverage requirement for tests.

9 years agoFix 'make install' on OSes where 'python3' doesn't exist.
Uwe Hermann [Sun, 4 May 2014 20:17:03 +0000 (22:17 +0200)]
Fix 'make install' on OSes where 'python3' doesn't exist.

Sometimes the Python 3 executable is called just 'python3', sometimes
it is called 'python3.4' and so on. Handle all cases transparently for
the user.

Before:

  $ make install
  /usr/bin/env: python3: No such file or directory

After:

  $ make install
  python3.4 ./tools/install-decoders -i ./decoders -o [...]
  Installing 36 protocol decoders:
  [...]

9 years agoHACKING: Update to current conventions.
Uwe Hermann [Sun, 4 May 2014 19:59:57 +0000 (21:59 +0200)]
HACKING: Update to current conventions.

(mostly copied from libsigrok, which normally has the same conventions)

9 years agoMark some variables more consistently as SRD_PRIV.
Uwe Hermann [Sun, 4 May 2014 19:00:24 +0000 (21:00 +0200)]
Mark some variables more consistently as SRD_PRIV.

9 years agolog.c: Avoid using the same name for a variable and enum.
Uwe Hermann [Sun, 4 May 2014 18:56:32 +0000 (20:56 +0200)]
log.c: Avoid using the same name for a variable and enum.

9 years agoUpdate a few Doxygen @since tags.
Uwe Hermann [Sun, 4 May 2014 18:25:17 +0000 (20:25 +0200)]
Update a few Doxygen @since tags.

9 years agolibsigrokdecode.h: Give type names to all enumerations.
Uwe Hermann [Sun, 4 May 2014 17:54:02 +0000 (19:54 +0200)]
libsigrokdecode.h: Give type names to all enumerations.

This matches the libsigrok conventions, and will be required (or
at least nice to have) for libsigrokdecode language bindings later.

9 years agotools/install-decoders: Minor consistency fix.
Uwe Hermann [Sat, 3 May 2014 22:08:15 +0000 (00:08 +0200)]
tools/install-decoders: Minor consistency fix.

9 years agoMove srd_check_init() to decoder.c and make it static.
Uwe Hermann [Sat, 3 May 2014 21:56:50 +0000 (23:56 +0200)]
Move srd_check_init() to decoder.c and make it static.

The function srd_check_init() is only used in decoder.c.

9 years agoMake 'pd_list' static, it's only used in one file.
Uwe Hermann [Sat, 3 May 2014 21:52:54 +0000 (23:52 +0200)]
Make 'pd_list' static, it's only used in one file.

9 years agoMake the srd_Decoder type private.
Uwe Hermann [Sat, 3 May 2014 21:45:55 +0000 (23:45 +0200)]
Make the srd_Decoder type private.

It's not public API and is not used (nor should it be used) by any frontends.

9 years agosrd.c: Fix typo to avoid Doxygen output for srd_check_init().
Uwe Hermann [Sat, 3 May 2014 21:41:04 +0000 (23:41 +0200)]
srd.c: Fix typo to avoid Doxygen output for srd_check_init().

9 years agoDoxygen: Don't parse anything in tests/ or doxy/.
Uwe Hermann [Sat, 3 May 2014 21:40:54 +0000 (23:40 +0200)]
Doxygen: Don't parse anything in tests/ or doxy/.

None of that is API-relevant.

9 years agodoxygen: Updated Doxyfile to doxygen 1.8.6.
Uwe Hermann [Sat, 3 May 2014 21:17:02 +0000 (23:17 +0200)]
doxygen: Updated Doxyfile to doxygen 1.8.6.

9 years agoDon't define names ending with _t (POSIX reserved).
Uwe Hermann [Sat, 3 May 2014 20:45:50 +0000 (22:45 +0200)]
Don't define names ending with _t (POSIX reserved).

Avoid defining any names ending in _t, those are generally reserved
for POSIX usage. For details see:

http://pubs.opengroup.org/onlinepubs/007904975/functions/xsh_chap02_02.html
http://www.gnu.org/software/libc/manual/html_node/Reserved-Names.html

9 years agoedid: s/annotation type/annotation class/.
Uwe Hermann [Sat, 3 May 2014 20:36:55 +0000 (22:36 +0200)]
edid: s/annotation type/annotation class/.

9 years agotests/check_session.c: Use UINT64_MAX.
Uwe Hermann [Sat, 3 May 2014 20:35:32 +0000 (22:35 +0200)]
tests/check_session.c: Use UINT64_MAX.

9 years agoDetect Python 3.4 if not installed as "python3".
Bert Vermeulen [Thu, 24 Apr 2014 12:12:49 +0000 (14:12 +0200)]
Detect Python 3.4 if not installed as "python3".

10 years agoinstance.c: s/probe/channel/.
Uwe Hermann [Tue, 15 Apr 2014 06:44:51 +0000 (08:44 +0200)]
instance.c: s/probe/channel/.

10 years agoAll PDs: More consistent OUTPUT_PYTHON format docs.
Uwe Hermann [Tue, 15 Apr 2014 06:43:22 +0000 (08:43 +0200)]
All PDs: More consistent OUTPUT_PYTHON format docs.

10 years agosdcard_spi: Avoid duplicate keys in a Python dict.
Uwe Hermann [Mon, 14 Apr 2014 21:50:45 +0000 (23:50 +0200)]
sdcard_spi: Avoid duplicate keys in a Python dict.

This fixes bug #191.

10 years agoAll PDs: Bump api_version to 2.
Uwe Hermann [Mon, 14 Apr 2014 20:14:39 +0000 (22:14 +0200)]
All PDs: Bump api_version to 2.

Older libsigrokdecode versions are no longer able to use the current
versions of the PDs (various changes in syntax etc).

10 years agoAll PDs: Drop some unneeded comments.
Uwe Hermann [Mon, 14 Apr 2014 21:09:43 +0000 (23:09 +0200)]
All PDs: Drop some unneeded comments.

10 years agonunchuk: Fix PD to become usable in GUIs.
Uwe Hermann [Wed, 5 Feb 2014 17:25:22 +0000 (18:25 +0100)]
nunchuk: Fix PD to become usable in GUIs.

 - Provide proper annotation classes and annotation rows.
 - Emit bit-exact annotations for some registers.
 - Output short and long annotations (for use when zooming).
 - Various minor fixes.

This fixes bug #344.

10 years agodebug: Log unitsize when configuring channel map.
Bert Vermeulen [Mon, 14 Apr 2014 22:46:45 +0000 (00:46 +0200)]
debug: Log unitsize when configuring channel map.

10 years ago.gitignore: Add test-suite.log.
Uwe Hermann [Sun, 13 Apr 2014 19:59:02 +0000 (21:59 +0200)]
.gitignore: Add test-suite.log.

10 years agoRename 'probe' to 'channel' everywhere.
Uwe Hermann [Sun, 13 Apr 2014 17:57:43 +0000 (19:57 +0200)]
Rename 'probe' to 'channel' everywhere.

Variables of type 'struct srd_channel *' are consistently named 'pdch' to
make them easily distinguishable from libsigrok's 'struct sr_channel *'
variables that are consistently named 'ch'.

10 years agoz80: Fix incorrect license field.
Uwe Hermann [Sun, 13 Apr 2014 17:56:09 +0000 (19:56 +0200)]
z80: Fix incorrect license field.

10 years agoSwitch to a non-recursive automake setup.
Uwe Hermann [Wed, 9 Apr 2014 19:06:27 +0000 (21:06 +0200)]
Switch to a non-recursive automake setup.

(fewer files, less clutter)

10 years agoREADME: Update build dependencies list.
Uwe Hermann [Wed, 9 Apr 2014 19:02:16 +0000 (21:02 +0200)]
README: Update build dependencies list.

10 years agoconfigure.ac: Clearly mark required and optional libs.
Uwe Hermann [Sat, 5 Apr 2014 11:00:59 +0000 (13:00 +0200)]
configure.ac: Clearly mark required and optional libs.

Also, drop printing of the detected Python CPPFLAGS/LDFLAGS, not really
needed since it's available in 'make V=1' output as well (and we don't print
it for other libs either).

10 years agoBump minimum Python version to 3.2
Bert Vermeulen [Thu, 20 Mar 2014 15:42:18 +0000 (16:42 +0100)]
Bump minimum Python version to 3.2

We use some functions specific to 3.1, but every distribution appears
to be at 3.2.x already anyway.

10 years agopdtest: Add support for code coverage.
Bert Vermeulen [Thu, 20 Mar 2014 16:02:56 +0000 (17:02 +0100)]
pdtest: Add support for code coverage.

10 years agoruntc: Add list of missed lines to coverage output.
Bert Vermeulen [Tue, 18 Mar 2014 11:13:38 +0000 (12:13 +0100)]
runtc: Add list of missed lines to coverage output.

10 years agousb_packet: Fix an incorrect index.
Uwe Hermann [Tue, 18 Mar 2014 19:39:09 +0000 (20:39 +0100)]
usb_packet: Fix an incorrect index.

10 years agousb_packet: Provide better short/long annotations.
Uwe Hermann [Tue, 18 Mar 2014 19:21:48 +0000 (20:21 +0100)]
usb_packet: Provide better short/long annotations.

10 years agousb_signalling: Make each symbol an annotation class.
Uwe Hermann [Tue, 18 Mar 2014 19:15:03 +0000 (20:15 +0100)]
usb_signalling: Make each symbol an annotation class.

10 years agousb_signalling: Provide better short/long annotations.
Uwe Hermann [Tue, 18 Mar 2014 19:04:10 +0000 (20:04 +0100)]
usb_signalling: Provide better short/long annotations.

10 years agoAdd support for code coverage of used decoder modules.
Bert Vermeulen [Mon, 17 Mar 2014 10:24:32 +0000 (11:24 +0100)]
Add support for code coverage of used decoder modules.

10 years agoBring various test output files up to date.
Bert Vermeulen [Fri, 14 Mar 2014 00:01:03 +0000 (01:01 +0100)]
Bring various test output files up to date.

10 years agopdtest: Small fix.
Bert Vermeulen [Fri, 14 Mar 2014 00:00:25 +0000 (01:00 +0100)]
pdtest: Small fix.

10 years agoVarious PDs: Minor option related fixes.
Uwe Hermann [Tue, 11 Mar 2014 23:51:06 +0000 (00:51 +0100)]
Various PDs: Minor option related fixes.

10 years agoVarious PDs: Drop currently unsupported probes in stacked PDs.
Uwe Hermann [Tue, 11 Mar 2014 23:22:31 +0000 (00:22 +0100)]
Various PDs: Drop currently unsupported probes in stacked PDs.

At the moment we don't yet support PDs which take both input from
another PD (which they're stacked on top of) and from one or more
logic inputs/pins.

This will be supported later on, and at that time we'll bring back
these changes.

10 years agocan: Make sample_point a float option.
Uwe Hermann [Tue, 11 Mar 2014 23:17:46 +0000 (00:17 +0100)]
can: Make sample_point a float option.

This allows users to set values like 70.5% or such.

10 years agoFix enumeration of option values.
Bert Vermeulen [Tue, 11 Mar 2014 22:27:31 +0000 (23:27 +0100)]
Fix enumeration of option values.

10 years agoFixed g_variant_get_double copy-paste error
Joel Holdsworth [Tue, 11 Mar 2014 21:58:24 +0000 (22:58 +0100)]
Fixed g_variant_get_double copy-paste error

10 years agoir_nec: Update to recent PD API changes.
Uwe Hermann [Mon, 10 Mar 2014 14:44:24 +0000 (15:44 +0100)]
ir_nec: Update to recent PD API changes.

10 years agoir_nec: Add support for higher-level remote control annotations.
Uwe Hermann [Fri, 7 Mar 2014 20:49:12 +0000 (21:49 +0100)]
ir_nec: Add support for higher-level remote control annotations.

10 years agoir_nec: Addresses and commands are transmitted LSB-first.
Uwe Hermann [Fri, 7 Mar 2014 19:17:00 +0000 (20:17 +0100)]
ir_nec: Addresses and commands are transmitted LSB-first.

10 years agoir_nec: Add support for more fields.
Uwe Hermann [Fri, 7 Mar 2014 18:30:09 +0000 (19:30 +0100)]
ir_nec: Add support for more fields.

Also show the AGC field(s) and pauses, the stop bit, and the individual
address / address# and command / command# fields.

10 years agoir_nec: Drop some unneeded options.
Uwe Hermann [Fri, 7 Mar 2014 16:24:21 +0000 (17:24 +0100)]
ir_nec: Drop some unneeded options.

The timing of the protocol is not really configurable, valid data in
this protocol must always adhere to the same timing parameters, making them
configurable should not be needed.

Also: Only check for the "interesting" edges and simplify the code a bit.

10 years agoRename 'ir_nec6122' PD to 'ir_nec', minor fixes and simplifications.
Uwe Hermann [Fri, 7 Mar 2014 13:55:54 +0000 (14:55 +0100)]
Rename 'ir_nec6122' PD to 'ir_nec', minor fixes and simplifications.

This IR protocol is commonly referred to as "the NEC protocol", and can be
generated by various means (not only via the NEC µPD6121/µPD6122 ICs).

Drop some unneeded variables and fix/simplify the code a bit.

10 years agoAdd NEC IR protocol decoder.
Gump Yang [Fri, 7 Mar 2014 13:53:50 +0000 (14:53 +0100)]
Add NEC IR protocol decoder.

10 years agoProbes, optional probes and annotations now take a tuple.
Bert Vermeulen [Mon, 10 Mar 2014 11:23:38 +0000 (12:23 +0100)]
Probes, optional probes and annotations now take a tuple.

Annotation entries also consist of a tuple, not a list.

10 years agoir_rc5: Change PD options to be a tuple of dictionaries.
Bert Vermeulen [Mon, 10 Mar 2014 09:35:41 +0000 (10:35 +0100)]
ir_rc5: Change PD options to be a tuple of dictionaries.

10 years agoRemove unused probes and options
Bert Vermeulen [Sun, 9 Mar 2014 23:43:27 +0000 (00:43 +0100)]
Remove unused probes and options

10 years agoChange PD options to be a tuple of dictionaries.
Bert Vermeulen [Sun, 9 Mar 2014 22:48:27 +0000 (23:48 +0100)]
Change PD options to be a tuple of dictionaries.

Each option consists of a dictionary with the following keys:

  id      The option id, which is passed in when setting a value.
  desc    A description of the option, suitable for display.
  def     The default value for this option.
  values  (optional) If present, a tuple containing values the option
          may take. They must be of the same type as the default.

Valid types for the options are UTF-8-encoded strings, integers, and
floating point values.

10 years agoonewire_link: Replaced us with µs
Joel Holdsworth [Tue, 4 Mar 2014 18:40:24 +0000 (18:40 +0000)]
onewire_link: Replaced us with µs

10 years agoir_rc5: Fix incorrect bit length of RC-5 packets.
Uwe Hermann [Wed, 5 Mar 2014 22:44:54 +0000 (23:44 +0100)]
ir_rc5: Fix incorrect bit length of RC-5 packets.

All RC-5 packets are 14 bits long.

10 years agoir_rc5: Don't throw exception upon invalid edge distances.
Uwe Hermann [Wed, 5 Mar 2014 22:44:14 +0000 (23:44 +0100)]
ir_rc5: Don't throw exception upon invalid edge distances.

Instead, reset the state machine and continue with the rest of the data.

10 years agoir_rc5: Only determine edge type once.
Uwe Hermann [Wed, 5 Mar 2014 22:34:50 +0000 (23:34 +0100)]
ir_rc5: Only determine edge type once.

10 years agoAdd initial RC-5 IR protocol decoder.
Uwe Hermann [Thu, 6 Feb 2014 18:49:06 +0000 (19:49 +0100)]
Add initial RC-5 IR protocol decoder.

10 years agoz80: Use methods directly as state values.
Daniel Elstner [Sun, 2 Mar 2014 10:10:40 +0000 (11:10 +0100)]
z80: Use methods directly as state values.

10 years agoz80: Display not-taken conditional calls correctly.
Daniel Elstner [Fri, 28 Feb 2014 20:10:53 +0000 (21:10 +0100)]
z80: Display not-taken conditional calls correctly.

10 years agoz80: Fix display of read/modify/write instructions.
Daniel Elstner [Fri, 28 Feb 2014 20:03:23 +0000 (21:03 +0100)]
z80: Fix display of read/modify/write instructions.