Re: [sigrok-devel] Can I write a decoder that combines inputs from spi and logic?

2018-05-08 Thread Aleksander Alekseev
Hello everyone, Never mind, turned out its not that complicated to count bits manually. An example is attached. And here is a screenshot: https://afiskon.ru/s/70/61b22f6692_temp.png On Sun, May 6, 2018 at 2:15 AM, Aleksander Alekseev wrote: > Hello, > > I'm working on a decoder for ST7735 TF

Re: [sigrok-devel] Can I write a decoder that combines inputs from spi and logic?

2018-05-08 Thread Uwe Hermann
Hi, On Tue, May 08, 2018 at 03:15:22PM +0300, Aleksander Alekseev wrote: > Never mind, turned out its not that complicated to count bits manually. An > example is attached. In this specific case I'd say it doesn't make much sense to try to stack on SPI anyway, since it's not SPI (just happens to

Re: [sigrok-devel] [PATCH] sigrok-dumps: Add ST7735 dump

2018-05-08 Thread Uwe Hermann
Hi, On Mon, May 07, 2018 at 04:43:59PM +0300, Aleksander Alekseev wrote: > Proposed patch contains a sequence of ST7735 TFT display controller which > is popular for small (1.44", 1.8") 16-bit color display modules (see ebay > :// st7735). Merged, thanks! Did some minimal reshuffling in the READM

Re: [sigrok-devel] [PATCH] sigrok-dumps: Add ST7735 dump

2018-05-08 Thread Aleksander Alekseev
Hello Uwe, Thank you a lot! On Tue, May 8, 2018 at 8:25 PM, Uwe Hermann wrote: > Hi, > > On Mon, May 07, 2018 at 04:43:59PM +0300, Aleksander Alekseev wrote: > > Proposed patch contains a sequence of ST7735 TFT display controller which > > is popular for small (1.44", 1.8") 16-bit color display

Re: [sigrok-devel] [PATCH] DSLogic Driver: fix "Default Voltage_Threshold"

2018-05-08 Thread Uwe Hermann
Hi, On Mon, Apr 30, 2018 at 11:25:01AM +0200, Jörg wrote: > it is no longer absolutely necessary to specify a threshold as a > program parameter. The default threshold of the driver is used. > Maybe a suggestion on the website > https://sigrok.org/wiki/DreamSourceLab_DSLogic > under > Capabilitie

[sigrok-devel] [PATCH] libsigrokdecode: Simple decoder for ST7735 TFT controller

2018-05-08 Thread Aleksander Alekseev
Hello everyone, Proposed patch adds decoder of ST7735 TFT controller protocol. Currently this decoder only allows to distinguish commands and data, and also shows command names and their short descriptions. Here is a screenshot: https://afiskon.ru/s/43/ea50416b0f_temp.png In this context I woul