#no-std #spi-interface #ssd1331

no-std ssd1331-async

Async driver for SSD1331-based displays with SPI interface

1 unstable release

new 0.1.0 Oct 27, 2024

#395 in Embedded development

Download history 140/week @ 2024-10-27

140 downloads per month

Apache-2.0

53KB
476 lines

Rust async driver for SSD1331-based displays

Uses embedded-hal(-async) to communicate with the display. Provides methods to initialize the display and to send pixel data from the MCU to the display-side framebuffer.

To generate the pixels on the MCU side, one can use embedded-graphics crate with a framebuffer in the MCU RAM. That framebuffer doesn't need to be as large as the entire display (which takes 12KB in 16-bit color mode).

Example code

Under examples/, there's a demonstration firmware for STM32F103 you can run e.g. on a Maple clone with cargo run --release --example main.

image

Can we directly draw to the display-side framebuffer?

I tried writing a direct-to-display implementation of DrawTarget trait. With that approach, drawing is necessarily synchronous, pretty slow (as sending a single pixel requires an 8-byte transfer), and sometimes needs delays to allow the display controller to rewrite its RAM. Overall, it's workable but slow enough to get visible flickering when redrawing the entire screen. At least for now, I'm going to stick with the MCU-side framebuffer.

Dependencies

~1MB
~17K SLoC