Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-06-14 | srd: pan1321: Add 'Text' (short) annotation format. | Uwe Hermann | |
Rename the old 'Text' format to 'Text (verbose)'. | |||
2012-06-14 | srd: pan1321: Output correct start/end sample values. | Uwe Hermann | |
2012-06-14 | srd: Fix non-working PAN1321 decoder. | Uwe Hermann | |
2012-06-12 | srd: Cosmetics. | Uwe Hermann | |
2012-06-12 | srd: jtag: Document current (WIP) protocol output format. | Uwe Hermann | |
2012-06-12 | srd: usb: Fix bugs in the USB decoder. | Uwe Hermann | |
The samplenum/scount handling was broken recently (mea culpa), and the DP/DM probes were swapped. | |||
2012-06-08 | srd: dcf77: Initial PON handling. | Uwe Hermann | |
2012-06-08 | srd: dcf77: Bugfix, PD was broken. | Uwe Hermann | |
2012-06-08 | srd: mx25lxx05d: 'Verbose decode' & 'Warnings' annotations. | Uwe Hermann | |
2012-06-08 | srd: mx25lxx05d: Add empty handlers for TODO cmds. | Uwe Hermann | |
2012-06-08 | srd: mx25lxx05d: Further fixes/simplifications. | Uwe Hermann | |
Also handle (not yet implemented) special-case command names such as 'RDP/RES' and 'FAST/READ' correctly. | |||
2012-06-08 | srd: mx25lxx05d: Simplify/generify cmd handling. | Uwe Hermann | |
2012-05-31 | srd: mlx90614: Small bugfix. | Uwe Hermann | |
2012-05-31 | srd: nunchuk: Enable PD now, it works fine. | Uwe Hermann | |
2012-05-31 | srd: nunchuk: Support for the Nunchuk init sequence. | Uwe Hermann | |
2012-05-31 | srd: nunchuk: Add verbose summary annotation. | Uwe Hermann | |
2012-05-31 | srd: nunchuk: Only output summary annotation if possible. | Uwe Hermann | |
2012-05-31 | srd: nunchuk: Fix most annotation samplenumbers. | Uwe Hermann | |
Also, add a self.putx() helper method, as most annotations we have right now are exactly one I2C packet long (there will also be others later, though). | |||
2012-05-31 | srd: Wii Nunchuk: Complete rewrite, PD works now. | Uwe Hermann | |
The Nintendo Wii Nunchuk protocol decoder, while it was in the repo for a while, didn't really work yet (among other things, due to lack of dumps for testing the code). This is fixed now, the rewritten decoder works fine with most dump files in the sigrok-dumps repo. A few minor issues remain to be added/fixed, though. | |||
2012-05-30 | srd: Cosmetics. | Uwe Hermann | |
2012-05-30 | srd: Disable 'onewire' PD for now, until it's working. | Uwe Hermann | |
2012-05-29 | sr/srd/cli/gtk: ChangeLog -> MAINTAINERCLEANFILES. | Uwe Hermann | |
If the (generated) ChangeLog file is marked for DISTCLEANFILES, it'll be removed whenever "make distclean" is called (and is then gone forever if you use the tarballs, for example). | |||
2012-05-23 | srd: onewire: Fix incorrect format for annotation output. | Uwe Hermann | |
Should be a list containing: - Annotation format number (e.g. 0, or ANN_DEC, etc). - A list of strings (the annotation). If more than one string is supplied, the other ones should be short versions of the string. Example: [ANN_DEC, ["Foobarbaz", "Foo", "F"]] This is optional, and mostly useful for GUIs. | |||
2012-05-23 | srd: onewire: Fix %d and %s mismatch. | Uwe Hermann | |
2012-05-23 | srd: onewire: Get optional 'pwr' probe value, too. | Uwe Hermann | |
2012-05-23 | srd: onewire: Drop UART leftover comments. | Uwe Hermann | |
2012-05-23 | removed some code copied from UART decoder, fixed some Python syntax issues | Iztok Jeras | |
2012-05-23 | unfinished update to onewire protocol decoder | Iztok Jeras | |
2012-05-23 | commiting new unfinished 1-wire decoder | Iztok Jeras | |
2012-05-18 | srd: MX25Lxx05D: Fix inverted SRWD bit handling. | Uwe Hermann | |
2012-05-18 | srd: MX25Lxx05D: Decode status register bits. | Uwe Hermann | |
2012-05-18 | srd: MX25Lxx05D: Fix SE command. | Uwe Hermann | |
2012-05-18 | srd: MX25Lxx05D: Implement READ command. | Uwe Hermann | |
2012-05-17 | srd: MX25Lxx05D: Implement RDSR and PP commands. | Uwe Hermann | |
Also, some small fixes and additional debug code/output. | |||
2012-05-17 | srd: spi: Document output protocol, send CS# changes. | Uwe Hermann | |
As per guidelines in HACKING, the protocol "commands"/items should be ALLCAPS, thus change 'data' to 'DATA'. Also, fix MX25Lxx05D protocol decoder accordingly, currently the only one we have which stacks on top of SPI. Add a new 'CS-CHANGE' output protocol item, which is sent upon every change of the CS# pin value (either 0->1, or vice versa). This is needed by various higher-level PDs. | |||
2012-05-15 | sr/srd/cli: Fix compiling with Homebrew. | Pekka Nikander | |
Add ACLOCAL_DIR setting and AM_PROG_AR macro for compiling with Homebrew under Mac OS X. Applies essentially the same change to {libsigrok,libsigrokdecode,sigrok-cli}/{autogen.sh,configure.ac} It may be that the same fix is needed for the other autogen.sh and/or configure.ac files, but that hasn't been tested and therefore not in this commit. | |||
2012-05-10 | srd: JTAG: Enavble and get/use optional probes. | Uwe Hermann | |
2012-05-10 | srd: Support for one or more optional probes. | Uwe Hermann | |
In the protocol decoder you always get all required probes, then _all_ optional probes in the list of probes in the decode() call. Example: (r1, r2, r3, o1, o2, o3, o4) = pins In this case r1-r3 are required probes, o1-o4 are optional probes. However, the value of valid/used/specified probes will be 0 or 1, whereas the value of probes that were not specified/assigned by the user will be (at the moment) 42. The PD can check for a valid probe like this: if p in (0, 1): ... Or check for an invalid probe: if (p > 1): ... The value of 42 could change to be -1 or None later. | |||
2012-05-09 | srd: Fix a few Doxygen errors. | Uwe Hermann | |
2012-05-09 | srd: Add usable one-liner descriptions for all PDs. | Uwe Hermann | |
2012-05-08 | srd: Remove TODOs from annotation format names. | Uwe Hermann | |
Also, fix minor consistency issues, cosmetics, typos. | |||
2012-05-05 | srd: JTAG/SMT32: Some more improvements. | Uwe Hermann | |
Add APB-AP register offsets/names, refactor and fix some code, handle in/out APACC/DPACC better. | |||
2012-05-04 | Fix bracket placing | Thomas Jarosch | |
Make it consistent with the rest of the code Signed-off-by: Thomas Jarosch <thomas.jarosch@intra2net.com> | |||
2012-05-03 | srd: JTAG/STM32: Factor out dpacc_data_in/out. | Uwe Hermann | |
Also, add a few code comments. | |||
2012-05-03 | srd: JTAG/STM32: Decode IDCODE[31:0] parts. | Uwe Hermann | |
2012-05-03 | srd: JTAG: Also show the bitstrings in hex (for now). | Uwe Hermann | |
2012-05-03 | srd: JTAG/STM32: Various improvements, fixes. | Uwe Hermann | |
Add APACC register handling, fix DPACC handling (esp. 'A' register size), ouput a warning upon reserved DAPABORT bits being non-zero, implement preliminary state machine, add various TODOs. This is still work in progress, not yet finished or working properly. | |||
2012-04-29 | srd: Add initial JTAG/STM32 protocol decoder. | Uwe Hermann | |
(not yet finished) This protocol decoder can decode ST STM32 specific JTAG accesses, knows about the STM32-specific registers and bits. | |||
2012-04-29 | srd: JTAG: Add some more docs. | Uwe Hermann | |
2012-04-29 | srd: JTAG: The TRST# (and SRST#) signals are optional. | Uwe Hermann | |
Don't handle them for now, will do this later. |