Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-01-29 | spi: Rename 'sck' to the more common 'clk'. | Uwe Hermann | |
2014-01-29 | spi: Allow MISO or MOSI to be optional. | Uwe Hermann | |
This fixes bug #175. | |||
2014-01-28 | tests/pdtest: Fix -R (takes an argument). | Uwe Hermann | |
2014-01-28 | spi: Drop temporary hack for combined MISO/MOSI out. | Uwe Hermann | |
2014-01-28 | Fix out-of-tree build. | Uwe Hermann | |
This fixes 'make install' and 'make dist' for out-of-tree builds. | |||
2014-01-28 | tests/runtc.c: Minor whitespace fixes. | Uwe Hermann | |
2014-01-28 | tests/pdtest: Add missing license header. | Uwe Hermann | |
2014-01-28 | tests/pdtest: Fix shebang line. | Uwe Hermann | |
2014-01-28 | All PDs: Consistent naming/case for annotation shortnames/IDs. | Uwe Hermann | |
2014-01-28 | All PDs: Drop unneeded comments. | Uwe Hermann | |
The single comment re-stating the PD's name / description / purpose in each pd.py file is not really needed, that info is available in the Decoder class' attributes already. | |||
2014-01-28 | All PDs: Improve/fix descriptions. | Uwe Hermann | |
2014-01-23 | transitioncounter: Drop PD (obsolete). | Uwe Hermann | |
This decoder was just a simple test case for early libsigrokdecode development and testing, it is neither useful nor properly working currently, so drop it. | |||
2014-01-23 | uart: Add binaryout/dump support, drop obsolete 'uart_dump' PD. | Uwe Hermann | |
The functionality of the preliminary 'uart_dump' PD is now available in the proper 'uart' PD, via the OUTPUT_BINARY mechanism that frontends can use to dump decoded data (in various formats) to a file, or pipe it into other applications, and so on. Old sigrok-cli example usage: $ sigrok-cli -i foo.sr -P uart:rx=0:tx=1,uart_dump:filename=bootlog.txt New sigrok-cli example usage: $ sigrok-cli -i foo.sr -P uart:rx=0:tx=1 -B uart=rxtx > bootlog.txt New sigrok-cli example usage (piping into other applications): $ sigrok-cli -i foo.sr -P uart:rx=0:tx=1 -B uart=rxtx | grep "whatever" | |||
2014-01-23 | i2s: Add WAV dump support, drop obsolete 'i2s_dump' PD. | Uwe Hermann | |
The functionality of the preliminary 'i2s_dump' PD is now available in the proper 'i2s' PD, via the OUTPUT_BINARY mechanism that frontends can use to dump decoded data (in various formats) to a file, or pipe it into other applications, and so on. Old sigrok-cli example usage: $ sigrok-cli -i 2ch-16bit-16khz.sr \ -P i2s:sck=0:ws=1:sd=2,i2s_dump:filename=foo.wav $ aplay foo.wav New sigrok-cli example usage: $ sigrok-cli -i 2ch-16bit-16khz.sr \ -P i2s:sck=0:ws=1:sd=2 -B i2s=wav > foo.wav $ aplay foo.wav New sigrok-cli example usage (piping into other applications): $ sigrok-cli -i 2ch-16bit-16khz.sr \ -P i2s:sck=0:ws=1:sd=2 -B i2s=wav | aplay - | |||
2014-01-17 | configure.ac: Drop obsolete MinGW Python3 workaround. | Uwe Hermann | |
We just use dummy/fake python3.pc files on Windows so that the usual pkg-config mechanism works there as well. | |||
2014-01-17 | configure.ac: Check for all known Python3 pkg-config names. | Uwe Hermann | |
Even when using pkg-config not all distro/platform specific issues are transparent, unfortunately. On some systems the pkg-config file is named "python3.pc" on others it's versioned, e.g. "python-3.2.pc". See also: http://sigrok.org/wiki/Libsigrokdecode/Python This should fix the build on e.g. FreeBSD, NetBSD, Mac OS X (some versions), and possibly various Linux distros, e.g. Gentoo. Also, drop manual AC_MSG_ERROR() and let PKG_CHECK_MODULES() output a more verbose and standardized error message if Python 3 is not found. | |||
2014-01-13 | parallel: Make CLK probe optional. | Uwe Hermann | |
When no CLK probe is supplied to this PD, handle any transition on any of the supplied data probes as if there had been a CLK transition. (based on a suggestion/patch by "bmx" from the #sigrok channel, thanks!) | |||
2014-01-03 | Link against libm to avoid Python related linking errors. | Uwe Hermann | |
The python3-config script reported "-lm" as linker option previously, but we switched to using pkg-config (among other things for cross-compile support) which doesn't report "-lm" though (this is a common behaviour across multiple distros and OSes). | |||
2014-01-02 | configure.ac: Use pkg-config to check for python | Marcus Comstedt | |
Using python-config does not work when cross-compiling, since it can only be run on the host system. | |||
2013-12-28 | jtag: Use proper annotation classes, fix GUI usage. | Uwe Hermann | |
This closes bug #156. | |||
2013-12-28 | jtag: Refactor and simplify some code. | Uwe Hermann | |
2013-12-28 | Do some more I2C to I²C changes. | Uwe Hermann | |
2013-12-28 | i2s: Fix typo. | Uwe Hermann | |
2013-12-28 | mxc6225xu: Replace I2C with I²C | Joel Holdsworth | |
2013-12-28 | lm75: Replace I2C with I²C | Joel Holdsworth | |
2013-12-28 | i2s_dump: Replace I2S with I²S | Joel Holdsworth | |
2013-12-28 | i2s: Replace I2S with I²S | Joel Holdsworth | |
2013-12-28 | i2cfiler: Replaced I2C with I²C | Joel Holdsworth | |
2013-12-28 | i2cdemux: Replaced I2C with I²C | Joel Holdsworth | |
2013-12-28 | i2c: Replaced I2C with I²C | Joel Holdsworth | |
2013-12-22 | runtc: Fix conditional build on non-Linux systems. | Bert Vermeulen | |
2013-12-18 | Don't install runtc. | Arkadiusz Miśkiewicz | |
Don't install runtc. Not meant for generic usage. Signed-off-by: Arkadiusz Miśkiewicz <arekm@maven.pl> | |||
2013-12-18 | runtc: Output binary as ASCII timestamp/class/hex bytes instead. | Bert Vermeulen | |
This allows for verifying timestamps and classes as well. | |||
2013-12-15 | runtc: Make sure to compile against this library | Bert Vermeulen | |
It might compile against a previously-installed one unless the linker finds it in the top directory first. | |||
2013-12-13 | i2c: Add Python tests. | Bert Vermeulen | |
2013-12-13 | pdtest/runtc: Add support for Python output types. | Bert Vermeulen | |
2013-12-13 | Send SRD_OUTPUT_PYTHON to registered callbacks as well. | Bert Vermeulen | |
There's really only one use case for this: the testing framework. This allows it to check what gets sent up the stack as well. | |||
2013-12-13 | Prune dead code. | Bert Vermeulen | |
2013-12-13 | i2c: Avoid obsolete method. | Bert Vermeulen | |
2013-12-13 | No need to mess with method reference counts. | Bert Vermeulen | |
2013-12-12 | i2c: Add binary tests. | Bert Vermeulen | |
2013-12-12 | pdtest/runtc: Add support for binary output types. | Bert Vermeulen | |
2013-12-12 | pdtest: Add -f option to automatically fix failing tests. | Bert Vermeulen | |
2013-12-12 | runtc: Add support for binary output. | Bert Vermeulen | |
2013-12-12 | Use new binary class definition format. | Bert Vermeulen | |
2013-12-12 | Binary classes are now defined as (name, description). | Bert Vermeulen | |
2013-12-11 | Easier access to sequences of strings, not just lists. | Bert Vermeulen | |
2013-12-11 | runtc: Return errorcode according to testcase result. | Bert Vermeulen | |
2013-12-11 | pdtest: Use -dd to turn on SR/SRD debugging. | Bert Vermeulen | |
2013-12-11 | check: Make sure to test this set of decoders, not the installed ones. | Bert Vermeulen | |