Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added ST7789 initialization #182

Merged
merged 2 commits into from
Nov 3, 2018
Merged

Added ST7789 initialization #182

merged 2 commits into from
Nov 3, 2018

Conversation

amakukha
Copy link

@amakukha amakukha commented Aug 1, 2018

I added ST7789 initialization sequence according to ST7789 datasheet.
Tested with display JLX240-00302 (320x240, 2.4") which uses ST7789V display driver.

It looks like setting SPI_MODE3 for ST7789 is not needed, so I deleted that part.

@Bodmer
Copy link
Owner

Bodmer commented Aug 1, 2018

Thanks for you input.

I have an ST7789 board that has the CS line tied low permanently, this board will not work with SPI_MODE0 but does with SPI_MODE3.

Can you test if the same happens with your display if you tie the CS line permanently low? If you can, then let me know your findings.

Also does your board work OK with the CS line driven and with SPI_MODE3?

@amakukha
Copy link
Author

amakukha commented Aug 2, 2018

I don't think CS line is related to SPI mode. CS low simply means that the slave device is permanently selected. This makes sense in our design (we are building “ESP32 WiPhone”) because display uses a dedicated SPI line, so there is always only one slave - the screen.

Also, according to the ST7789V datasheet:

At the falling edge of CSX, SCL can be high or low. SDA is sampled at the rising edge of SCL.

I think, this means that SPI_MODE0 and SPI_MODE3 should both work.

In my testing, SPI_MODE0, SPI_MODE3 and SPI_MODE2 all work no matter how CS is connected (tied low or driven). The frame rate appears to be the same in these three modes. The only mode that doesn't work for me is SPI_MODE1 (no matter how CS is connected).

So by some luck SPI_MODE2 also works for me.

Certainly, it is strange that SPI_MODE0 doesn't work for you. I guess, it might be caused by impedance differences in your specific setup. So, in general, it might be wise to allow users to select SPI mode.

@amakukha
Copy link
Author

amakukha commented Aug 2, 2018

Oh, I actually remembered one dev board I have that had problems with the ST7789 screen: it required a soft reset in order for the screen to work properly. Otherwise, the screen would always stay white.

But this bug disappeared after I changed SPI mode to SPI_MODE3 🌞 So finally, based on your and mine observations, I think it is safer to leave the default SPI_MODE3 for ST7789 driver.

@Bodmer Bodmer merged commit d7c8649 into Bodmer:master Nov 3, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants