summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-09-11ook_oregon: Minor code simplifications.Uwe Hermann
2018-09-11ook: Minor code simplifications.Uwe Hermann
2018-09-11added ook_visSteve R
2018-09-11added ook_oregonSteve R
2018-09-11added ookSteve R
2018-09-10miller: Minor description/whitespace fixes.Uwe Hermann
2018-09-10atsha204a: Add missing full stop in description.Uwe Hermann
2018-09-09miller: Add missing 'binary' meta-data.Uwe Hermann
2018-09-09Miller encoding PDChristoph Rackwitz
2018-09-09cec: Drop uneeded self.set_stat().Uwe Hermann
2018-09-09cec: Replace unneeded decode_opcode().Uwe Hermann
2018-09-09cec: Simplify a few code snippets.Uwe Hermann
2018-09-09Add HDMI CEC protocol decoder.Jorge Solla
2018-09-09usb_power_delivery: Whitespace/consistency cosmetics.Uwe Hermann
All annotation classes/rows have all-lowercase IDs. Also fix a few minor whitespace/consistency issues.
2018-09-09usb_power_delivery: Drop currently unused self.out_python.Uwe Hermann
2018-09-09usb_power_delivery: Drop non-existing max_w for now.Uwe Hermann
2018-09-09usb_power_delivery: better PD 3.0 support and other changesdavidanger
- better PD 3.0 support - display PD revision in output - different flags for source and sink PDO's and RDO's [Note: This commit is the remaining set of manually merged changes of the recent commits from Peetz0r <peter@haas-en-berg.nl> and the improvements from davidanger <davidanger@163.com> over at https://github.com/davidanger/libsigrokdecode]
2018-09-09usb_power_delivery: wait 1ms instead of 100k samplesPeetz0r
2018-09-09usb_power_delivery: improve wordingPeetz0r
Control channel => Configuration Channel
2018-09-09usb_power_delivery: PPS supportPeetz0r
2018-09-09usb_power_delivery: Move stored PDO's inside Decoder classPeetz0r
Also add timeout functionality to properly decode the last packet in a capture.
2018-09-09usb_power_delivery: print more useful stuffPeetz0r
including: - power in watts - type of PDO (fixed, pps, etc) - which PDO belongs to an RDO also deduplicated get_source_cap() and get_sink_cap()
2018-09-06swim: Simplify a code snippet.Uwe Hermann
2018-09-06Decoder for STM8 series MCUs SWIM protocol.Mike Jagdis
Signed-off-by: Mike Jagdis <mjagdis@eris-associates.co.uk> (github: mjagdis)
2018-08-30srd_exit(): Fix a -Wcast-function-type compiler warning.Uwe Hermann
srd.c: In function ‘srd_exit’: srd.c:310:28: warning: cast between incompatible function types from ‘int (*)(struct srd_session *)’ to ‘void (*)(void *, void *)’ [-Wcast-function-type] g_slist_foreach(sessions, (GFunc)srd_session_destroy, NULL); ^
2018-08-30srd_decoder_unload_all(): Fix a -Wcast-function-type compiler warning.Uwe Hermann
decoder.c: In function ‘srd_decoder_unload_all’: decoder.c:1080:27: warning: cast between incompatible function types from ‘int (*)(struct srd_decoder *)’ to ‘void (*)(void *, void *)’ [-Wcast-function-type] g_slist_foreach(pd_list, (GFunc)srd_decoder_unload, NULL); ^
2018-08-30log: add a public srd_log_callback_get() API routineGerhard Sittig
Allow applications to query the currently registered log callback. So they can either restore the previously registered routine, or register another routine _and_ log to the previously registered routine as well.
2018-08-30Make srd_inst_decode() return the actual decoder state, not SRD_OKSoeren Apel
2018-08-30counter: Consider edge counter offset also in word processingSoeren Apel
2018-08-30counter: Let user decide how to handle the initial dead_cycles stateSoeren Apel
edge_off and word_off are not included in the if block because a user may want to use edge_off to dismiss unwanted clocks instead of dead_cycles.
2018-08-30counter: Introduce option to ignore edgesGerhard Sittig
2018-08-30counter: Use initial counter values also after a resetSoeren Apel
2018-08-30spi: Create the out_bitrate annotation unconditionallyJosef Gajdusek
The start() method is called before the metadata() method, which results in the the out_bitrate instance variable never getting created and ending up as an AttributeError when decoding. (observed with sigrok-cli and VCD file as the input)
2018-08-29edid: Shorten two code snippets.Uwe Hermann
2018-08-29edid: Add support for extension blocks, cleanupsStefan Brüns
Extension blocks are widely used by e.g. HDMI to signal support for audio, colorspaces and much more. Cleanups: - support short forms for annotations - join overlapping annotations, these were unreadable in PV, and the positions were inaccurate (aligned to bytes instead of bits, no notion of used bits in split fields).
2018-08-25install: unbreak installation with Python 3.7 (os.errno)Gerhard Sittig
The os.errno module has not been an official feature. Python 3.7 removed the corresponding import. This broke the installation of decoders. Prefer 'errno' over 'os.errno'.
2018-08-12configure.ac: Also check for Python 3.7.Uwe Hermann
2018-08-11counter: add support for user specified initial counter valuesGerhard Sittig
Introduce options for the initial edge and word counter values. Default to 0 for compatibility with the previous implementation. This fixes bug #1229.
2018-08-11mdio: accept MDIO READ without previous ADDRESS commandGerhard Sittig
Fix a Python string formatting issue, where the format string disagreed with the argument list. A READ command could unexpectedly terminate the decoder instance when there was no previous ADDRESS command. This fixes bug #1258.
2018-07-15uart: rephrase data bits to data value conversionGerhard Sittig
Use the already available .databits[] information which holds sample data and bit time edge positions, and the common bitpack() routine. This shall increase readability of the bits to value conversion. [ best viewed with more context, like 'git diff -U5' ]
2018-07-15common: rephrase bitpack(), use list comprehension Python idiomGerhard Sittig
2018-06-22jtag_ejtag: Simplify some code snippets.Uwe Hermann
2018-06-22jtag_ejtag: Fix short/long annotation order.Uwe Hermann
The list of annotation strings is sorted from longest to shortest.
2018-06-22jtag_ejtag: Add short description in __init__.py.Uwe Hermann
2018-06-22jtag_ejtag: Move bin2int() to common/srdhelper.Uwe Hermann
Also, rename from bin_to_int to bin2int() for consistency.
2018-06-22jtag_ejtag: Simplify two code snippets.Uwe Hermann
2018-06-22jtag_ejtag: Shorten variable names to ss/es.Uwe Hermann
These abbreviations are commonly-used in all other PDs.
2018-06-21Add MIPS EJTAG decoderVlad Ivanov
Signed-off-by: Vlad Ivanov <vlad.ivanov@lab-systems.ru>
2018-06-10cfp: Add reset() method.Uwe Hermann
2018-06-10cfp: Use the Python in/range keywords.Uwe Hermann