summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-02-10srd: s/python/Python/.Uwe Hermann
2012-02-10srd: Add/improve g_malloc() error messages.Uwe Hermann
2012-02-10srd: Move private symbols to sigrokdecode-internal.h.Uwe Hermann
2012-02-10srd: Add/use SRD_API/SRD_PRIV macros.Uwe Hermann
This is not yet finished, more things should be made private.
2012-02-10srd: Cosmetics, whitespace, coding-style fixes.Uwe Hermann
2012-02-10srd: More consistent log related function names.Uwe Hermann
Also, fix typos, constify some parameters, add more Doxygen comments.
2012-02-05Project-wide consistent naming for #include guards.Uwe Hermann
Document the naming scheme in HACKING.
2012-02-05autogen.sh: aclocal support for Windows XP/Vista/7.Uwe Hermann
2012-02-02srd: Add explicit srd_pd_output_callback_t typedef.Uwe Hermann
2012-02-01srd: Properly use append() for appending to lists.Uwe Hermann
This is not only the canonical way to do it, it's also quite a bit faster and less memory-intensive than using '+='.
2012-02-01srd: Move all protocol docs to __init__.py files.Uwe Hermann
2012-02-01srd: spi: Use strings for most options.Uwe Hermann
2012-02-01srd: uart: Use strings for most PD options.Uwe Hermann
2012-02-01srd: uart: Move protocol docs to __init__.py.Uwe Hermann
2012-02-01srd: uart: Add missing initialization.Uwe Hermann
2012-02-01srd: uart: Use strings for packet types.Uwe Hermann
While this has a (small) performance penalty compared to using integers, it has the advantage of not requiring the use of magic numbers which need to be declared in both the UART decoder and all decoders which stack on top of UART.
2012-02-01srd: rename extra_probes to optional_probes in all PDsBert Vermeulen
2012-02-01srd: rename extra_probes to optional_probesBert Vermeulen
2012-01-31srd: free all decoder instances when unloading decodersBert Vermeulen
2012-01-31srd: avoid POSIX_SOURCE warningBert Vermeulen
2012-01-31srd: remove obsolete DDC-only I2C filterBert Vermeulen
2012-01-31srd: add generic I2C filter PDBert Vermeulen
2012-01-31srd: Add missing <inttypes.h> #include (for PRIu64).Uwe Hermann
2012-01-31edid: properly deal with leading I2C crud + small fixesBert Vermeulen
2012-01-30srd: removed stray malloc()Bert Vermeulen
2012-01-30srd: clear objects after final decref, so it doesn't happen twiceBert Vermeulen
2012-01-29edid: move PD docstring to __init__.pyBert Vermeulen
also minor code cleanups
2012-01-29srd: add EDID 1.3 decoderBert Vermeulen
2012-01-29ddc: add protocol outputBert Vermeulen
2012-01-28Update/enforce/document our build requirements.Uwe Hermann
2012-01-28srd: Drop unneeded check, g_free() handles NULL fine.Uwe Hermann
2012-01-28srd: PDs: Cleanups, simplifications, small fixes.Uwe Hermann
2012-01-27srd: mlx90614: Show more exact temperature.Uwe Hermann
2012-01-27srd: Use PRIu64 for uint64_t values.Uwe Hermann
Using %d seems to silently work on Linux, but leads to a segfault on Windows/MinGW.
2012-01-27srd: add more debugging around probe mappingBert Vermeulen
2012-01-27srd: use format string where one is expectedBert Vermeulen
2012-01-27srd: Melexis MLX90614 Infrared Thermometer decoder.Uwe Hermann
2012-01-26srd: Remove manual log domain ("srd: ") prefixes.Uwe Hermann
2012-01-26srd: log: Support for setting a log domain (prefix).Uwe Hermann
2012-01-25srd: UART: s/parity/parity_type/.Uwe Hermann
2012-01-25srd: All PDs: Various fixes, cosmetics.Uwe Hermann
- List all API methods and metadata variables in all PDs to make things easier and more consistent for new PD writers. - Fix probe assignment in a few PDs. - Raise exceptions upon invalid states of the PD state machines (bug).
2012-01-25srd: mx25lxx05d: Cleanups, add optional probes.Uwe Hermann
2012-01-25srd: Support for registering a custom log handler.Uwe Hermann
2012-01-25srd: Add Epson RTC-8564 JE/NB protocol decoder.Uwe Hermann
2012-01-25srd: properly recurse into PD instances when looking for one.Bert Vermeulen
This fixes the confusion between parallel and linear stacks.
2012-01-24sr: better error reportingBert Vermeulen
2012-01-24srd: change struct srd_pd_output to have a path to the DI, not the decoder.Bert Vermeulen
2012-01-23srd: Prepend (not append) PD dirs to sys.path.Uwe Hermann
2012-01-23srd: deal with invalid probe specifications betterBert Vermeulen
2012-01-23srd: i2cdemux: add missing Makefile.amBert Vermeulen