embytes-buffer-async 0.2.1

A async concurrent buffer implementation fro no_std devices
Documentation
1
2
3
4
5
6
7
8
9
10
11
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