Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ithinuel/i2c-write-iter

Exports iterator based parallels to embedded-hal & embedded-hal-async for Write & WriteRead
https://github.com/ithinuel/i2c-write-iter

Last synced: 10 days ago
JSON representation

Exports iterator based parallels to embedded-hal & embedded-hal-async for Write & WriteRead

Awesome Lists containing this project

README

        

# I2C Write Iter

Iterator based write operations where removed from the embedded-hal in:
[https://github.com/rust-embedded/embedded-hal/pull/440]

Yet, iterator based writes come in very handy especially for devices like the sh1107 display controller
where data needs to be interleaved with control bytes.

This crates allows for hal implementations to support those use cases.
HAL implementations requiring DMA backed transactions can still internally use a buffer to fill from
the iterator.