From 0719b05d63a1d80d3b8ea39a411545a6e8e22ec2 Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Thu, 27 Jan 2022 00:08:02 +0100 Subject: traits: migrate Delay to embedded-hal 1.0+async, remove Rng and Flash. --- README.md | 9 --------- 1 file changed, 9 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 62aea0064..fe273fdc1 100644 --- a/README.md +++ b/README.md @@ -2,15 +2,6 @@ Embassy is a project to make async/await a first-class option for embedded development. For more information and instructions to get started, go to [https://embassy.dev](https://embassy.dev). -## Traits and types - -`embassy` provides a set of traits and types specifically designed for `async` usage. - -- `embassy::io`: `AsyncBufRead`, `AsyncWrite`. Traits for byte-stream IO, essentially `no_std` compatible versions of `futures::io`. -- `embassy::traits::flash`: Flash device trait. -- `embassy::time`: `Clock` and `Alarm` traits. Std-like `Duration` and `Instant`. -- More traits for SPI, I2C, UART async HAL coming soon. - ## Executor The `embassy::executor` module provides an async/await executor designed for embedded usage. -- cgit