aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorxoviat <[email protected]>2021-03-02 00:32:23 +0100
committerDario Nieuwenhuis <[email protected]>2021-03-02 00:32:23 +0100
commit9626aee7dbe5fe454a014beee82383bc3f102a91 (patch)
tree6d155c12dd0563056874ecc97d57c6ac521bcf5c /README.md
parent084b64053a562797fa3d88bb7dde9ddd8db792f1 (diff)
Move traits to separate crate.
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 0f1cb1be5..3cf1b61fa 100644
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@ Embassy is a project to make async/await a first-class option for embedded devel
7`embassy` provides a set of traits and types specifically designed for `async` usage. 7`embassy` provides a set of traits and types specifically designed for `async` usage.
8 8
9- `embassy::io`: `AsyncBufRead`, `AsyncWrite`. Traits for byte-stream IO, essentially `no_std` compatible versions of `futures::io`. 9- `embassy::io`: `AsyncBufRead`, `AsyncWrite`. Traits for byte-stream IO, essentially `no_std` compatible versions of `futures::io`.
10- `embassy::flash`: Flash device trait. 10- `embassy::traits::flash`: Flash device trait.
11- `embassy::time`: `Clock` and `Alarm` traits. Std-like `Duration` and `Instant`. 11- `embassy::time`: `Clock` and `Alarm` traits. Std-like `Duration` and `Instant`.
12- More traits for SPI, I2C, UART async HAL coming soon. 12- More traits for SPI, I2C, UART async HAL coming soon.
13 13