summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-02-09sdcard_spi: Fix incorrect 'Command index' value access.Uwe Hermann
2014-02-09sdcard_spi: Use bit-exact annotations in handle_response_r1().Uwe Hermann
2014-02-09sdcard_spi: Use bit-exact annotations in handle_command_token().Uwe Hermann
2014-02-09spi: Throw an error if neither MISO nor MOSI was supplied.Uwe Hermann
2014-02-09spi: Fix incorrect dataword endsample numbers.Uwe Hermann
2014-02-09spi: Refactoring and cleanups.Uwe Hermann
2014-02-09spi: Factor out reset_decoder_state().Uwe Hermann
2014-02-09spi: Output per-bit annotations and OUTPUT_PYTHON data.Uwe Hermann
This can be used by higher-level PDs to decode per-bit items (not just based on whole datawords).
2014-02-09sdcard_spi: Define annotation rows.Uwe Hermann
This fixes parts of bug #309.
2014-02-09sdcard_spi: Use proper annotation classes.Uwe Hermann
This fixes parts of bug #309.
2014-02-09sdcard_spi: Initial fixing round for correct samplenumbers.Uwe Hermann
This fixes parts of bug #309.
2014-02-02rtc8564: Handle century bit.Uwe Hermann
2014-02-02rtc8564: Provide short/long annotations.Uwe Hermann
2014-02-02rtc8564: Handle register 0x06 (weekday).Uwe Hermann
2014-02-02rtc8564: Define annotation rows.Uwe Hermann
2014-02-02rtc8564: Use proper annotation classes.Uwe Hermann
2014-02-01lpc: Define annotation rows.Uwe Hermann
2014-02-01Add a few missing probe-names.Uwe Hermann
2014-02-01uart: Better annotation row handling of parity errors.Uwe Hermann
2014-02-01guess_bitrate: start() doesn't take a metadata argument anymore.Uwe Hermann
2014-02-01Fix more warnings exposed by -Wmissing-prototypes.Uwe Hermann
2014-02-01usb_signalling: Define annotation rows.Uwe Hermann
2014-02-01spi: Improve probe names/descriptions a bit.Uwe Hermann
2014-02-01onewire_link: Define annotation rows.Uwe Hermann
2014-02-01dcf77: Fix incorrect startsample for "month" field.Uwe Hermann
2014-02-01avr_isp: Fix a bug resulting in incorrect start samples.Uwe Hermann
2014-01-31dcf77: Define annotation rows.Uwe Hermann
2014-01-31spi: Define annotation rows.Uwe Hermann
2014-01-31uart: Define annotation rows.Uwe Hermann
Also, provide all the required annotation classes for this to work properly.
2014-01-31Add support for annotation rows.Uwe Hermann
An annotation row is a list of annotation classes that should all be displayed in the same "row" in GUIs. For example, the UART decoder would have at least two rows (for decoded RX and TX data/startbits/stopbits/paritybits), the SPI decoder would have at least two rows (for decoded MISO and MOSI data), and so on. Each annotation row has a short ID string (mostly for use in command-line frontends), a description string (mostly for use by GUIs), and a tuple/list of annotation class IDs belonging to this row. If no annotation rows are provided by the decoder, frontends can consider this as the "trivial" case of all annotation classes being displayed on the same (only) row.
2014-01-31uart: Allow either RX or TX to be optional.Uwe Hermann
2014-01-31srd_inst_probe_set_all: Error out upon missing required probes.Uwe Hermann
2014-01-30s/out_proto/out_python/.Uwe Hermann
The output type is now called OUTPUT_PYTHON, adapt all PDs to that.
2014-01-30Fix warnings exposed by -Wmissing-prototypes.Uwe Hermann
2014-01-30configure.ac: Add -Wmissing-prototypes.Uwe Hermann
2014-01-30configure.ac: Only check for things we actually use.Uwe Hermann
Drop checks where we don't use the result (yet). We might bring back some of those once we start actually using the result in the code.
2014-01-30mx25lxx05d: Add probe test case.Uwe Hermann
2014-01-30uart: Add trekstor_ebr30_a test case.Uwe Hermann
2014-01-30uart: Better fix for ASCII output.Uwe Hermann
This is a temporary thing, later there'll be some facility to let frontends handle any annotations marked as "this is a number" (as opposed to "this is a string") in a generic manner and display them in any supported (by that frontend) format, e.g. ascii, hex, oct, decimal, binary, big-endian vs. little-endian, and so on. This is a fix related to #201.
2014-01-30spi: Add mx25l1605d_probe test case.Uwe Hermann
2014-01-29spi: Add atmega32_00 test case.Uwe Hermann
2014-01-29spi: Rename 'sck' to the more common 'clk'.Uwe Hermann
2014-01-29spi: Allow MISO or MOSI to be optional.Uwe Hermann
This fixes bug #175.
2014-01-28tests/pdtest: Fix -R (takes an argument).Uwe Hermann
2014-01-28spi: Drop temporary hack for combined MISO/MOSI out.Uwe Hermann
2014-01-28Fix out-of-tree build.Uwe Hermann
This fixes 'make install' and 'make dist' for out-of-tree builds.
2014-01-28tests/runtc.c: Minor whitespace fixes.Uwe Hermann
2014-01-28tests/pdtest: Add missing license header.Uwe Hermann
2014-01-28tests/pdtest: Fix shebang line.Uwe Hermann
2014-01-28All PDs: Consistent naming/case for annotation shortnames/IDs.Uwe Hermann