summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-05-23removed some code copied from UART decoder, fixed some Python syntax issuesIztok Jeras
2012-05-23unfinished update to onewire protocol decoderIztok Jeras
2012-05-23commiting new unfinished 1-wire decoderIztok Jeras
2012-05-18srd: MX25Lxx05D: Fix inverted SRWD bit handling.Uwe Hermann
2012-05-18srd: MX25Lxx05D: Decode status register bits.Uwe Hermann
2012-05-18srd: MX25Lxx05D: Fix SE command.Uwe Hermann
2012-05-18srd: MX25Lxx05D: Implement READ command.Uwe Hermann
2012-05-17srd: MX25Lxx05D: Implement RDSR and PP commands.Uwe Hermann
Also, some small fixes and additional debug code/output.
2012-05-17srd: 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-15sr/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-10srd: JTAG: Enavble and get/use optional probes.Uwe Hermann
2012-05-10srd: 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-09srd: Fix a few Doxygen errors.Uwe Hermann
2012-05-09srd: Add usable one-liner descriptions for all PDs.Uwe Hermann
2012-05-08srd: Remove TODOs from annotation format names.Uwe Hermann
Also, fix minor consistency issues, cosmetics, typos.
2012-05-05srd: 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-04Fix bracket placingThomas Jarosch
Make it consistent with the rest of the code Signed-off-by: Thomas Jarosch <thomas.jarosch@intra2net.com>
2012-05-03srd: JTAG/STM32: Factor out dpacc_data_in/out.Uwe Hermann
Also, add a few code comments.
2012-05-03srd: JTAG/STM32: Decode IDCODE[31:0] parts.Uwe Hermann
2012-05-03srd: JTAG: Also show the bitstrings in hex (for now).Uwe Hermann
2012-05-03srd: 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-29srd: 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-29srd: JTAG: Add some more docs.Uwe Hermann
2012-04-29srd: JTAG: The TRST# (and SRST#) signals are optional.Uwe Hermann
Don't handle them for now, will do this later.
2012-04-29srd: jtag: Various bugfixes.Uwe Hermann
Most importantly, both TDI and TDO are sampled at the rising TCK edge, and only upon transitions from SHIFT-DR to SHIFT-DR and SHIFT-IR to SHIFT-IR are we to save the TDI/TDO values (if I understood this correcly). Also, start out in RUN-TEST/IDLE state for now. This is useful if you have JTAG dumps which start "in the middle" somewhere, not in the TEST-LOGIC-RESET state. For full dumps, the JTAG software usually issues five TMS=1 cycles to force the JTAG state machine into TEST-LOGIC-RESET anyway, so this works fine too.
2012-04-26srd: Add initial JTAG protocol decoder.Uwe Hermann
This is unfinished, needs some more work.
2012-04-26srd: lpc: Minor additions/fixes.Uwe Hermann
2012-04-21srd: MXC6225XU: Bugfixes, add missing bits/registers.Uwe Hermann
2012-04-19srd: Initial MEMSIC MXC6225XU protocol decoder.Uwe Hermann
Not quite finished yet, but relatively close.
2012-04-18Initial LPC protocol decoder implementation.Uwe Hermann
This is unfinished and not tested, and probably not really working, yet.
2012-04-17srd: Initial 0.1.0 release.Uwe Hermann
2012-04-16sr/srd: SR_API/SRD_API/etc. is a no-op on MinGW.Uwe Hermann
This avoids warnings on a MinGW build. The feature depends on ELF files, but MinGW/Windows uses PE files.
2012-04-16srd: Quickfix for MinGW build issue.Uwe Hermann
2012-04-15srd: Add functions to query srd version(s).Uwe Hermann
2012-04-10sr/srd: Use/fix SR(D)_MAX_NUM_PROBES.Uwe Hermann
2012-04-06srd/i2s: Added links to documentationJoel Holdsworth
2012-04-06srd/i2s: Added sample-rate and bit-depth to reportJoel Holdsworth
2012-04-06srd/i2s: Print a warning on receiving a malformed wordJoel Holdsworth
2012-04-06srd/i2s: Initial implementationJoel Holdsworth
2012-03-31srd: Disable 'nunchuk' PD for now, it's unfinished.Uwe Hermann
2012-03-31srd: Decoders: Fix/simplify samplenum usage.Uwe Hermann
2012-03-31sr/srd: Fix 'make distcheck'.Uwe Hermann
2012-03-31sr/srd: Add ChangeLog to ignore list, it's generated.Uwe Hermann
2012-03-31srd: Generate ChangeLog from git upon 'make dist'.Uwe Hermann
2012-03-31srd: Add NEWS file.Uwe Hermann
2012-03-31srd: SRD_PACKAGE_VERSION_* for consistency.Uwe Hermann
No need to use the LIBSIGROKDECODE_ prefix here when we use SRD_ everywhere else. Also, better distinction between package version and lib version.
2012-03-28srd: Some more (optional) consistency renames.Uwe Hermann
2012-03-28srd/cli/qt: Some more API consistency renames.Uwe Hermann
2012-03-28srd: PDs: Kill obsolete 'longdesc' entries.Uwe Hermann
2012-03-24srd: Add .gitignore file.Uwe Hermann