Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-02-19 | rgb_led: Fix annotation end sample numbers. | Uwe Hermann | |
2014-02-19 | rgb_led: Minor cosmetics, whitespace. | Uwe Hermann | |
2014-02-19 | Initial RGB LED decoder | Matt Ranostay | |
Signed-off-by: Matt Ranostay <mranostay@gmail.com> | |||
2014-02-09 | usb_packet: s/NACK/NAK/. | Uwe Hermann | |
The USB spec spells this as "NAK". | |||
2014-02-09 | usb_packet: Use annotation classes and annotation rows. | Uwe Hermann | |
2014-02-09 | sdcard_spi: Adapt for MSB-first bits from spi PD. | Uwe Hermann | |
2014-02-09 | spi: Use/store bits in MSB-first order. | Uwe Hermann | |
This makes things a bit easier/clearer for most stacked PDs. | |||
2014-02-09 | spi: Fix warnings about CS# being de-asserted. | Uwe Hermann | |
2014-02-09 | rtc8564: Improve short annotations. | Uwe Hermann | |
2014-02-09 | rtc8564: Provide per-bit annotations. | Uwe Hermann | |
2014-02-09 | i2c: Emit per-bit annotations/packets and define annotation rows. | Uwe Hermann | |
2014-02-09 | mx25lxx05d: Define annotation rows. | Uwe Hermann | |
2014-02-09 | mx25lxx05d: Use proper annotation classes. | Uwe Hermann | |
2014-02-09 | avr_isp: Fix 'Device' annotation sample numbers + row. | Uwe Hermann | |
2014-02-09 | avr_isp: Define annotation rows. | Uwe Hermann | |
2014-02-09 | avr_isp: Use proper annotation classes. | Uwe Hermann | |
2014-02-09 | sdcard_spi: Merge command ID/name and description into same annotation. | Uwe Hermann | |
2014-02-09 | sdcard_spi: Improved command handling / display. | Uwe Hermann | |
2014-02-09 | sdcard_spi: Fix handling of some warning annotations. | Uwe Hermann | |
2014-02-09 | sdcard_spi: Fix incorrect R1 reply annotation endsample. | Uwe Hermann | |
2014-02-09 | sdcard_spi: Fix incorrect 'Command index' value access. | Uwe Hermann | |
2014-02-09 | sdcard_spi: Use bit-exact annotations in handle_response_r1(). | Uwe Hermann | |
2014-02-09 | sdcard_spi: Use bit-exact annotations in handle_command_token(). | Uwe Hermann | |
2014-02-09 | spi: Throw an error if neither MISO nor MOSI was supplied. | Uwe Hermann | |
2014-02-09 | spi: Fix incorrect dataword endsample numbers. | Uwe Hermann | |
2014-02-09 | spi: Refactoring and cleanups. | Uwe Hermann | |
2014-02-09 | spi: Factor out reset_decoder_state(). | Uwe Hermann | |
2014-02-09 | spi: Output per-bit annotations and OUTPUT_PYTHON data. | Uwe Hermann | |
This can be used by higher-level PDs to decode per-bit items (not just based on whole datawords). | |||
2014-02-09 | sdcard_spi: Define annotation rows. | Uwe Hermann | |
This fixes parts of bug #309. | |||
2014-02-09 | sdcard_spi: Use proper annotation classes. | Uwe Hermann | |
This fixes parts of bug #309. | |||
2014-02-09 | sdcard_spi: Initial fixing round for correct samplenumbers. | Uwe Hermann | |
This fixes parts of bug #309. | |||
2014-02-02 | rtc8564: Handle century bit. | Uwe Hermann | |
2014-02-02 | rtc8564: Provide short/long annotations. | Uwe Hermann | |
2014-02-02 | rtc8564: Handle register 0x06 (weekday). | Uwe Hermann | |
2014-02-02 | rtc8564: Define annotation rows. | Uwe Hermann | |
2014-02-02 | rtc8564: Use proper annotation classes. | Uwe Hermann | |
2014-02-01 | lpc: Define annotation rows. | Uwe Hermann | |
2014-02-01 | Add a few missing probe-names. | Uwe Hermann | |
2014-02-01 | uart: Better annotation row handling of parity errors. | Uwe Hermann | |
2014-02-01 | guess_bitrate: start() doesn't take a metadata argument anymore. | Uwe Hermann | |
2014-02-01 | Fix more warnings exposed by -Wmissing-prototypes. | Uwe Hermann | |
2014-02-01 | usb_signalling: Define annotation rows. | Uwe Hermann | |
2014-02-01 | spi: Improve probe names/descriptions a bit. | Uwe Hermann | |
2014-02-01 | onewire_link: Define annotation rows. | Uwe Hermann | |
2014-02-01 | dcf77: Fix incorrect startsample for "month" field. | Uwe Hermann | |
2014-02-01 | avr_isp: Fix a bug resulting in incorrect start samples. | Uwe Hermann | |
2014-01-31 | dcf77: Define annotation rows. | Uwe Hermann | |
2014-01-31 | spi: Define annotation rows. | Uwe Hermann | |
2014-01-31 | uart: Define annotation rows. | Uwe Hermann | |
Also, provide all the required annotation classes for this to work properly. | |||
2014-01-31 | Add support for annotation rows. | Uwe Hermann | |
An annotation row is a list of annotation classes that should all be displayed in the same "row" in GUIs. For example, the UART decoder would have at least two rows (for decoded RX and TX data/startbits/stopbits/paritybits), the SPI decoder would have at least two rows (for decoded MISO and MOSI data), and so on. Each annotation row has a short ID string (mostly for use in command-line frontends), a description string (mostly for use by GUIs), and a tuple/list of annotation class IDs belonging to this row. If no annotation rows are provided by the decoder, frontends can consider this as the "trivial" case of all annotation classes being displayed on the same (only) row. |