Expand embassy feature doc to explain that a time driver should be enabled too (#835)

This commit is contained in:
Scott Mabin 2023-09-30 15:24:39 +01:00 committed by GitHub
parent edd6c16637
commit 93bb10f9b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 12 additions and 6 deletions

View File

@ -16,7 +16,8 @@
//! - `eh1` - Implement the traits defined in the `1.0.0-xxx` pre-releases of
//! [embedded-hal], [embedded-hal-nb], and [embedded-io]
//! - `embassy` - Enable support for [embassy], a modern asynchronous embedded
//! framework
//! framework. One of `embassy-time-*` features must also be enabled when
//! using this feature.
//! - `embassy-time-systick` - Enable the [embassy] time driver using the
//! `SYSTIMER` peripheral
//! - `embassy-time-timg0` - Enable the [embassy] time driver using the `TIMG0`

View File

@ -16,7 +16,8 @@
//! - `eh1` - Implement the traits defined in the `1.0.0-xxx` pre-releases of
//! [embedded-hal], [embedded-hal-nb], and [embedded-io]
//! - `embassy` - Enable support for [embassy], a modern asynchronous embedded
//! framework
//! framework. One of `embassy-time-*` features must also be enabled when
//! using this feature.
//! - `embassy-time-systick` - Enable the [embassy] time driver using the
//! `SYSTIMER` peripheral
//! - `embassy-time-timg0` - Enable the [embassy] time driver using the `TIMG0`

View File

@ -16,7 +16,8 @@
//! - `eh1` - Implement the traits defined in the `1.0.0-xxx` pre-releases of
//! [embedded-hal], [embedded-hal-nb], and [embedded-io]
//! - `embassy` - Enable support for [embassy], a modern asynchronous embedded
//! framework
//! framework. One of `embassy-time-*` features must also be enabled when
//! using this feature.
//! - `embassy-time-systick` - Enable the [embassy] time driver using the
//! `SYSTIMER` peripheral
//! - `embassy-time-timg0` - Enable the [embassy] time driver using the `TIMG0`

View File

@ -16,7 +16,8 @@
//! - `eh1` - Implement the traits defined in the `1.0.0-xxx` pre-releases of
//! [embedded-hal], [embedded-hal-nb], and [embedded-io]
//! - `embassy` - Enable support for [embassy], a modern asynchronous embedded
//! framework
//! framework. One of `embassy-time-*` features must also be enabled when
//! using this feature.
//! - `embassy-time-systick` - Enable the [embassy] time driver using the
//! `SYSTIMER` peripheral
//! - `embassy-time-timg0` - Enable the [embassy] time driver using the `TIMG0`

View File

@ -14,7 +14,8 @@
//! - `eh1` - Implement the traits defined in the `1.0.0-xxx` pre-releases of
//! [embedded-hal], [embedded-hal-nb], and [embedded-io]
//! - `embassy` - Enable support for [embassy], a modern asynchronous embedded
//! framework
//! framework. One of `embassy-time-*` features must also be enabled when
//! using this feature.
//! - `embassy-executor-interrupt` - Use the interrupt-mode embassy executor
//! - `embassy-executor-thread` - Use the thread-mode embassy executor
//! - `embassy-time-timg0` - Enable the [embassy] time driver using the `TIMG0`

View File

@ -15,7 +15,8 @@
//! - `eh1` - Implement the traits defined in the `1.0.0-xxx` pre-releases of
//! [embedded-hal], [embedded-hal-nb], and [embedded-io]
//! - `embassy` - Enable support for [embassy], a modern asynchronous embedded
//! framework
//! framework. One of `embassy-time-*` features must also be enabled when
//! using this feature.
//! - `embassy-executor-interrupt` - Use the multicore-aware interrupt-mode
//! embassy executor
//! - `embassy-executor-thread` - Use the multicore-aware thread-mode embassy