aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Lilleengen <[email protected]>2024-01-11 20:32:07 +0100
committerUlf Lilleengen <[email protected]>2024-01-11 20:32:07 +0100
commit9a269803bdaa29c9b36fd70d6651b4f2ea10b220 (patch)
treebbc895c7453a58718eefeb7b8534a4f63f8c848d
parent46602903f5defa77c1bdc07afe4a57dbb9d51904 (diff)
restructure
-rw-r--r--embassy-nrf/README.md8
1 files changed, 6 insertions, 2 deletions
diff --git a/embassy-nrf/README.md b/embassy-nrf/README.md
index ae5256a2a..59fb4f1bf 100644
--- a/embassy-nrf/README.md
+++ b/embassy-nrf/README.md
@@ -8,6 +8,8 @@ complete operations in low power mod and handling interrupts, so that applicatio
8 8
9NOTE: The Embassy HALs can be used both for non-async and async operations. For async, you can choose which runtime you want to use. 9NOTE: The Embassy HALs can be used both for non-async and async operations. For async, you can choose which runtime you want to use.
10 10
11For a complete list of available peripherals and features, see the [embassy-nrf documentation](https://docs.embassy.dev/embassy-nrf).
12
11## Hardware support 13## Hardware support
12 14
13The `embassy-nrf` HAL supports most variants of the nRF family: 15The `embassy-nrf` HAL supports most variants of the nRF family:
@@ -16,9 +18,11 @@ The `embassy-nrf` HAL supports most variants of the nRF family:
16* nRF53 ([examples](https://github.com/embassy-rs/embassy/tree/main/examples/nrf5340)) 18* nRF53 ([examples](https://github.com/embassy-rs/embassy/tree/main/examples/nrf5340))
17* nRF91 ([examples](https://github.com/embassy-rs/embassy/tree/main/examples/nrf9160)) 19* nRF91 ([examples](https://github.com/embassy-rs/embassy/tree/main/examples/nrf9160))
18 20
19Most peripherals are supported. If the `time` feature is enabled, the HAL uses the RTC peripheral as a global time driver for [embassy-time](https://crates.io/crates/embassy-time), with a tick rate of 32768 Hz. 21Most peripherals are supported.
22
23## Time driver
20 24
21For a complete list of available peripherals and features, see the [documentation](https://docs.embassy.dev/embassy-nrf/git/nrf52805/index.html). 25If the `time` feature is enabled, the HAL uses the RTC peripheral as a global time driver for [embassy-time](https://crates.io/crates/embassy-time), with a tick rate of 32768 Hz.
22 26
23## API 27## API
24 28