Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-10-24 | controller.c: Add checks for srd_inst_option_set(). | Uwe Hermann | |
This also fixes some unit tests that were previously failing. | |||
2013-10-24 | testsuite: Add some decoder instance related tests. | Uwe Hermann | |
2013-10-21 | parallel: Limit number of probes to 8 for now. | Uwe Hermann | |
This will be increased again at some later point. | |||
2013-10-20 | session: Add some more parameter checks, minor other fixes. | Uwe Hermann | |
Some of these also fix unit tests that were previously failing. | |||
2013-10-20 | testsuite: Add a few session related unit tests. | Uwe Hermann | |
2013-10-20 | Add initial sync parallel bus decoder. | Uwe Hermann | |
2013-10-18 | Report invalid module name on decoder load | Bert Vermeulen | |
2013-10-18 | testsuite: Add a few more unit tests. | Uwe Hermann | |
2013-10-17 | Minor cosmetics, typos, Doxygen updates/fixes. | Uwe Hermann | |
2013-10-17 | Avoid clobbering class variables when setting instance options | Bert Vermeulen | |
2013-10-17 | Don't release borrowed reference | Bert Vermeulen | |
2013-10-17 | .gitignore: Add some missing entries. | Uwe Hermann | |
2013-10-17 | testsuite: Add some basic tests for loading PDs. | Uwe Hermann | |
2013-10-17 | Add a testsuite for libsigrokdecode. | Uwe Hermann | |
This uses the Check unit testing framework, just like libsigrok. For now, only a few very basic unit tests are included. Invocation: make check | |||
2013-10-16 | Properly return error on exception in srd_inst_option_set() | Bert Vermeulen | |
2013-10-14 | Move all decoder instances and callbacks into a session struct | Bert Vermeulen | |
The struct srd_session also holds configuration parameters formerly passed to srd_session_start(). The new call srd_session_new() takes a pointer where a newly allocated pointer to struct srd_session will be stored. This pointer must be passed as the first argument to all functions that require it. The SRD_CONF_NUM_PROBES, SRD_CONF_UNITSIZE and SRD_CONF_SAMPLERATE keys must be configured with srd_config_set() before srd_session_start() is called. A new call srd_session_destroy() is also available. This cleans up all resources the session holds. This is also called from srd_exit() for all sessions. | |||
2013-10-14 | Code cleanup | Bert Vermeulen | |
2013-10-13 | i2s_dump: Fix bug in the WAV output format generation. | Uwe Hermann | |
2013-10-13 | Add 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-13 | tlc5620: Output short/long annotations. | Uwe Hermann | |
This fixes (the remaining parts of) bug #168. | |||
2013-10-13 | tlc5620: Use annotation types. | Uwe Hermann | |
This fixes parts of bug #168. | |||
2013-10-13 | lpc: Initial start-/end-sample support. | Uwe Hermann | |
This fixes (parts of) bug #163. | |||
2013-10-13 | lpc: Use annotation types. | Uwe Hermann | |
This fixes (parts of) bug #163. | |||
2013-10-13 | lpc: Make the RESET# pin optional. | Uwe Hermann | |
2013-10-13 | lpc: Fix handling of optional probes. | Uwe Hermann | |
2013-10-13 | lpc: Add annotation helper method. | Uwe Hermann | |
This fixes (parts of) bug #163. | |||
2013-10-11 | usb_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-11 | usb_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-11 | Rename usb_protocol to usb_packet. | Uwe Hermann | |
There will be further PDs that are stacked on top of usb_packet. | |||
2013-10-11 | usb_signalling: Document protocol output format. | Uwe Hermann | |
Also, add missing output for some packet types. | |||
2013-10-09 | onewire_link: Provide short/long annotations. | Uwe Hermann | |
2013-10-09 | onewire_link: Fix typos. | Uwe Hermann | |
2013-10-09 | onewire_link: Split "reset" and "presence" annotations. | Uwe Hermann | |
This needs a few more fixes later, but it's a start. | |||
2013-10-09 | onewire_link: Default the 'overdrive' option to 'no'. | Uwe Hermann | |
2013-10-08 | onewire_link: Use defaults for the PD options. | Uwe Hermann | |
This also simplifies the PD code a bit. | |||
2013-10-08 | onewire_link: Drop PD info not useful for the user. | Uwe Hermann | |
2013-10-08 | onewire_link: Use annotation types. | Uwe Hermann | |
This fixes bug #147. | |||
2013-10-08 | onewire_link: Add/use annotation helpers. | Uwe Hermann | |
2013-10-08 | i2s: Add shorter and longer annotations for GUI use. | Uwe Hermann | |
This fixes (the remaining parts of) bug #162. | |||
2013-10-08 | i2s: Define/use common proto out format. | Uwe Hermann | |
2013-10-08 | i2s: Add helper methods for annotation/proto output. | Uwe Hermann | |
2013-10-08 | i2s: Use annotation types. | Uwe Hermann | |
This fixes parts of bug #162. | |||
2013-10-06 | Add 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-29 | usb_signalling: Fix packet annotation. | Uwe Hermann | |
2013-09-29 | usb_signalling: Fix EOP handling and annotation. | Uwe Hermann | |
2013-09-29 | usb_signalling: Properly use different annotation types. | Uwe Hermann | |
2013-09-29 | usb_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-20 | usb_signalling: Simplify symbols handling a bit. | Uwe Hermann | |
2013-09-20 | usb_signalling: Refactor/simplify bitrate/bitwidth handling. | Uwe Hermann | |
2013-09-15 | usb_signalling: Fix start/end sample numbers. | Uwe Hermann | |
This makes the decoder suitable for GUI usage. This fixes bug #155. |