summaryrefslogtreecommitdiff
path: root/decoders
AgeCommit message (Collapse)Author
2013-11-27edid: Make sure to install the vendor list.Bert Vermeulen
2013-11-27Automate protocol decoder installation.Bert Vermeulen
This automatically figures out the files to install for each protocol decoder, without involving autotools. All python files (filenames ending in .py) are always installed. If a protocol decoder requires installation of a non-python file, a small file called 'config' can be created in that protocol decoder's directory, with the following content: # comments are ok extra-install vendorlist.txt commands.txt
2013-11-15Use OUTPUT_BINARY with four classes.Bert Vermeulen
2013-11-15Drop obsolete report() method.Bert Vermeulen
2013-11-15Drop outdated report: this should be handled by a frontend.Bert Vermeulen
2013-11-15Use the new Decoder.register() APIBert Vermeulen
2013-11-15Emit meta bitrateBert Vermeulen
2013-11-15Emit meta bitrateBert Vermeulen
2013-11-07Rename inter-PD output type to SRD_OUTPUT_PYTHONBert Vermeulen
This better reflects what it is: a python object generated and processed by python code.
2013-10-30The start() method no longer takes a metadata parameterBert Vermeulen
2013-10-30Receive samplerate via metadata(), not start()Bert Vermeulen
2013-10-25Add a 'guess_bitrate' protocol decoder.Uwe Hermann
This PD tries to guess / detect / estimate a bitrate of e.g. some UART communication snippet or other protocols.
2013-10-21parallel: Limit number of probes to 8 for now.Uwe Hermann
This will be increased again at some later point.
2013-10-20Add initial sync parallel bus decoder.Uwe Hermann
2013-10-13i2s_dump: Fix bug in the WAV output format generation.Uwe Hermann
2013-10-13Add new i2s_dump protocol decoder.Uwe Hermann
This stacks of top of the 'i2s' decoder and outputs the audio data to file (or stdout) in various formats. Currently only WAV is supported. This is work in progress, it has various hard-coded assumptions.
2013-10-13tlc5620: Output short/long annotations.Uwe Hermann
This fixes (the remaining parts of) bug #168.
2013-10-13tlc5620: Use annotation types.Uwe Hermann
This fixes parts of bug #168.
2013-10-13lpc: Initial start-/end-sample support.Uwe Hermann
This fixes (parts of) bug #163.
2013-10-13lpc: Use annotation types.Uwe Hermann
This fixes (parts of) bug #163.
2013-10-13lpc: Make the RESET# pin optional.Uwe Hermann
2013-10-13lpc: Fix handling of optional probes.Uwe Hermann
2013-10-13lpc: Add annotation helper method.Uwe Hermann
This fixes (parts of) bug #163.
2013-10-11usb_signalling: Drop packet handling.Uwe Hermann
The usb_signalling PD should not care about packets, only symbols and bits. The new (fixed) usb_packet PD constructs packets out of individual bits now.
2013-10-11usb_packet: Major rewrite, e.g. to prepare for GUI usage.Uwe Hermann
Restructure the PD into a state machine, output individual packet components as separate annotations, define a protocol output format and implement it (so that other PDs can stack on top of this one), and fix various other isses in the PD.
2013-10-11Rename usb_protocol to usb_packet.Uwe Hermann
There will be further PDs that are stacked on top of usb_packet.
2013-10-11usb_signalling: Document protocol output format.Uwe Hermann
Also, add missing output for some packet types.
2013-10-09onewire_link: Provide short/long annotations.Uwe Hermann
2013-10-09onewire_link: Fix typos.Uwe Hermann
2013-10-09onewire_link: Split "reset" and "presence" annotations.Uwe Hermann
This needs a few more fixes later, but it's a start.
2013-10-09onewire_link: Default the 'overdrive' option to 'no'.Uwe Hermann
2013-10-08onewire_link: Use defaults for the PD options.Uwe Hermann
This also simplifies the PD code a bit.
2013-10-08onewire_link: Drop PD info not useful for the user.Uwe Hermann
2013-10-08onewire_link: Use annotation types.Uwe Hermann
This fixes bug #147.
2013-10-08onewire_link: Add/use annotation helpers.Uwe Hermann
2013-10-08i2s: Add shorter and longer annotations for GUI use.Uwe Hermann
This fixes (the remaining parts of) bug #162.
2013-10-08i2s: Define/use common proto out format.Uwe Hermann
2013-10-08i2s: Add helper methods for annotation/proto output.Uwe Hermann
2013-10-08i2s: Use annotation types.Uwe Hermann
This fixes parts of bug #162.
2013-10-06Add initial MIDI protocol decoder.Uwe Hermann
This supports a certain number of MIDI messages already, but not yet all of them. More will be added later.
2013-09-29usb_signalling: Fix packet annotation.Uwe Hermann
2013-09-29usb_signalling: Fix EOP handling and annotation.Uwe Hermann
2013-09-29usb_signalling: Properly use different annotation types.Uwe Hermann
2013-09-29usb_signalling: Fix decode of individual bits.Uwe Hermann
After a Start of Packet (SOP) has been detected, "sample" the individual USB symbolѕ/bits in the middle of the respective bittime (depending on whether full-speed or low-speed signalling is used). This fixes various incorrectly decoded cases (bug #158).
2013-09-20usb_signalling: Simplify symbols handling a bit.Uwe Hermann
2013-09-20usb_signalling: Refactor/simplify bitrate/bitwidth handling.Uwe Hermann
2013-09-15usb_signalling: Fix start/end sample numbers.Uwe Hermann
This makes the decoder suitable for GUI usage. This fixes bug #155.
2013-09-15dcf77: Fix date parity check.Uwe Hermann
The parity check for certain DCF77 fields/bits was incorrect. It has to be an even parity over bits 36-58. This is fixed now. This fixes bug #157.
2013-09-15dcf77: Provide short and long annotations.Uwe Hermann
2013-09-15dcf77: Fix multi-bit DCF77 field annotations.Uwe Hermann