Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-04-02 | Fix a few decoding bugs with arm_etmv3. | Petteri Aimonen | |
Fixed: - wrong address decoding for some branches - error in annotation lists for exception entry/exit - exception was being thrown for 0E0N p-header packets - fixes to objdump output parsing, better function name & source code matching New features: - added decoding of IRQ names for branch exception info - added support for -C option to objdump to decode C++ symbol names - put branches on the "Exceptions" annotation row when they contain exception info. | |||
2015-04-02 | pwm: add period annotation | Matt Porter | |
2015-03-25 | mx25lxx05d: Implement FAST READ command. | Uwe Hermann | |
2015-03-02 | Fix typo in swd decoder | Petteri Aimonen | |
2015-03-02 | Add ARM TPIU/ITM/ETMv3 decoders | Petteri Aimonen | |
2015-02-24 | nrf24l01: Change 'xn297_extensions' option to 'chip'. | Uwe Hermann | |
This allows for easily extending the PD to support other clones or compatibles of the nRF24L01(+) chip as well. | |||
2015-02-24 | nrf24l01: Add option to support the XN297's extra registers | Mike | |
2015-02-17 | Improve uart decoder sample positions at high data rates. | Petteri Aimonen | |
At 3 samples per bit, the uart decoder took the value at the last sample instead of the middle one. Improve calculations so that sampling is more accurate at odd number of samples per bit. | |||
2014-12-28 | Add 24xx I2C EEPROM protocol decoder. | Uwe Hermann | |
2014-12-28 | spi: Add binary output facilities for MISO/MOSI. | Uwe Hermann | |
This fixes bug #424. | |||
2014-12-16 | edid: Add annotation rows. | Bert Vermeulen | |
2014-12-16 | eded: Add all sections. | Bert Vermeulen | |
2014-11-23 | jitter: Simplify ascii-float binary out. | Uwe Hermann | |
This also outputs one item of OUT_BINARY per jitter value (not one item per ASCII character in the ASCII floating point number). | |||
2014-11-23 | jitter: Rename "jitter" binary out to "ascii-float". | Uwe Hermann | |
2014-11-23 | jitter: add a binary output to report the raw jitter value. | Sebastien Bourdelin | |
Signed-off-by: Sebastien Bourdelin <sebastien.bourdelin@savoirfairelinux.com> | |||
2014-11-23 | jitter: fixes an error when a miss clock/signal is detected | Sebastien Bourdelin | |
Signed-off-by: Sebastien Bourdelin <sebastien.bourdelin@savoirfairelinux.com> | |||
2014-11-09 | jitter: Factor out handle_clk() and handle_sig(). | Uwe Hermann | |
2014-11-09 | Add a timing jitter decoder. | Sebastien Bourdelin | |
Signed-off-by: Sebastien Bourdelin <sebastien.bourdelin@savoirfairelinux.com> | |||
2014-11-02 | pwm: Fix and rework | Sebastien Bourdelin | |
Reworked in the algorithm: - Fixed the polarity setting - Taken in consideration the first transition - Using the 'None' state instead of -1 and 0 value - Simplify the algorithm and remove useless branches and variables - Avoid re-calculating the same thing more than once - Renamed a few variables for a better understanding - Duty cycle precision changed to floating value Otherwise: - Added a meta OUTPUT for the duty cycle average - Renamed the polarity option: 'polarity', 'active low/high' are well-understood terms. - Added comments Signed-off-by: Sebastien Bourdelin <sebastien.bourdelin@savoirfairelinux.com> | |||
2014-10-19 | spi: Use 'None' to signal the missing CS# pin. | Jens Steinhauser | |
2014-10-19 | nrf24l01: Don't decode incomplete commands. | Jens Steinhauser | |
Wait for the CS# line to be inactive before decoding the commands. | |||
2014-10-19 | nrf24l01: Check for CS# pin and only throw exceptions once. | Jens Steinhauser | |
2014-10-19 | spi: Tell stacked decoders about missing CS# signal. | Jens Steinhauser | |
This could previously be detected by the absence of a CS-CHANGE packet before the first data packet, but it makes the stacked decoder simpler if it is told directly. | |||
2014-10-17 | Add a PWM decoder. | Uwe Hermann | |
2014-10-16 | uart: Fix code comment. | Uwe Hermann | |
2014-10-16 | uart: Emit databyte and bits list at the same time. | Uwe Hermann | |
This will allow for much simpler code in stacked PDs. Adapt stacked PDs to new API. | |||
2014-10-15 | midi: Fix two incorrect sample numbers. | Uwe Hermann | |
2014-10-13 | All PDs: More consistent names for ss/es variables. | Uwe Hermann | |
Use self.ss/self.es, or if there's a need to differentiate them a bit more, use self.ss_<suffix>/self.es_<suffix> consistently. Also, drop some unused variables. | |||
2014-10-13 | All PDs: Only import the 'Decoder' object. | Uwe Hermann | |
Anything else in the pd.py files doesn't have to be imported/exposed. | |||
2014-10-12 | am230x: Factor out handle_byte() to simplify state machine. | Uwe Hermann | |
2014-10-12 | swd: Drop unnecessary debug code. | Uwe Hermann | |
2014-10-12 | swd: Add SWD protocol decoder for ARM Serial Wire Debug format. | Angus Gratton | |
Supports annotated output for analysing debug sessions, Python output for potential stacked decoders looking at higher level debug operations. | |||
2014-10-12 | am230x: Minor documentation fix. | Uwe Hermann | |
2014-10-12 | am230x: Use slightly more liberal timing values. | Uwe Hermann | |
This seems to be required at least for some AM2301 and DHT11 sensors. | |||
2014-10-12 | am230x: Change option to 'device' to allow for more devices. | Uwe Hermann | |
2014-10-12 | am230x: Fix self.reset() method name. | Uwe Hermann | |
2014-10-12 | am230x: Minor cosmetics. | Uwe Hermann | |
2014-10-12 | Add decoder for AM230x digital humidity and temperature sensors. | Johannes Römer | |
2014-09-15 | sdcard_spi/usb_packet: Drop unused variables. | Uwe Hermann | |
2014-09-15 | uart: Implement signal inversion | David Barksdale | |
2014-09-10 | Various PDs: Whitespace, cosmetics. | Uwe Hermann | |
2014-09-10 | rfm12: Cosmetics. | Uwe Hermann | |
Also, update author email address. | |||
2014-09-08 | rfm12: Frequencies: Fix typo (915MHz), add 315MHz entry. | Uwe Hermann | |
2014-09-08 | rfm12: Avoid using the Python 'range' keyword as variable. | Uwe Hermann | |
2014-09-08 | rfm12: Drop debug printing. | Uwe Hermann | |
Any errors during decoding should be handled by the PD state machine. | |||
2014-09-08 | RFM12 decoder | Sławek Piotrowski | |
2014-09-01 | PD tests moved into the sigrok-test repo. | Uwe Hermann | |
Drop them from the libsigrokdecode repository. | |||
2014-08-30 | spdif: Simplify get_pulse_type() a bit. | Uwe Hermann | |
2014-08-30 | spdif: Use strings for decoder states. | Uwe Hermann | |
2014-08-30 | spdif: Add another annotation helper. | Uwe Hermann | |