therealprof / display-interface

Rust crates providing a generic interface for display drivers and some default implementations (GPIO, SPI and I2C)
Apache License 2.0
73 stars 27 forks source link

spi: Remove manual chipselect handling #27

Closed GrantM11235 closed 1 year ago

GrantM11235 commented 2 years ago

embedded-hal 1.0 says:

If your device has a CS pin, use SpiDevice. Do not manually manage the CS pin, the SpiDevice implementation will do it for you.

GrantM11235 commented 2 years ago

I cleaned up the commits and I decided to leave the struct names unchanged for now

GrantM11235 commented 1 year ago

This was fixed in #37