forked from sajattack/st7735-lcd-rs
-
Notifications
You must be signed in to change notification settings - Fork 25
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
16 bit parallel mode incorrectly implemented #9
Labels
bug
Something isn't working
Comments
I might be wrong but I think this is actually OK. |
No, because they always need to be sent in two separate 8 bit values but if you specifiy a 16 bit Datasize, a 16 bit DI impl will not split it up but send it as a single 16 Bit value. |
Ah yes you're right. I'll switch it to U8 |
almindor
added a commit
that referenced
this issue
May 18, 2020
Fixed |
Can we get a release? ;) |
We did, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The driver is currently using
write_word
to send associated command data, however this is implemented aswhich means it'll try to send data as 16 bit value, however the only display commands accepting 16 bit values are
RAMWR
andRAMWRC
, i.e. the ones used to send pixel data. Everything else must be sent as multiple 8bit values, even in 16bit parallel mode.The text was updated successfully, but these errors were encountered: