embytes-buffer-async 0.2.1

A async concurrent buffer implementation fro no_std devices
Documentation

This libray contains a buffer implementation that is made for no_std environments.

The buffer is backed ba any bytes source that satisfies AsMut<[u8]> + AsRef<[u8]>.

The buffer implemnts embedded_io_async::Read and embedded_io_async::Write.

In contrast to the embytes_buffer crate this crate allows for concurrent read and write access.

Example

See examples directory for examples