aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Lilleengen <[email protected]>2024-01-26 09:11:17 +0100
committerUlf Lilleengen <[email protected]>2024-01-26 09:11:17 +0100
commit531645e5d4650c87df5c0a3e2603a43ee9049f7b (patch)
tree118922a065de659f650b8ba9957e36b3266ad65a
parentbea3c5495a37481c85bcfce8d55f94049e4b89fd (diff)
docs: mention nrf51
-rw-r--r--embassy-nrf/README.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/embassy-nrf/README.md b/embassy-nrf/README.md
index 50662749d..3df5f1fa5 100644
--- a/embassy-nrf/README.md
+++ b/embassy-nrf/README.md
@@ -14,11 +14,12 @@ For a complete list of available peripherals and features, see the [embassy-nrf
14 14
15The `embassy-nrf` HAL supports most variants of the nRF family: 15The `embassy-nrf` HAL supports most variants of the nRF family:
16 16
17* nRF51 ([examples](https://github.com/embassy-rs/embassy/tree/main/examples/nrf51))
17* nRF52 ([examples](https://github.com/embassy-rs/embassy/tree/main/examples/nrf52840)) 18* nRF52 ([examples](https://github.com/embassy-rs/embassy/tree/main/examples/nrf52840))
18* nRF53 ([examples](https://github.com/embassy-rs/embassy/tree/main/examples/nrf5340)) 19* nRF53 ([examples](https://github.com/embassy-rs/embassy/tree/main/examples/nrf5340))
19* nRF91 ([examples](https://github.com/embassy-rs/embassy/tree/main/examples/nrf9160)) 20* nRF91 ([examples](https://github.com/embassy-rs/embassy/tree/main/examples/nrf9160))
20 21
21Most peripherals are supported. To check what's available, make sure to pick the MCU you're targeting in the top menu in the [documentation](https://docs.embassy.dev/embassy-nrf). 22Most peripherals are supported, but can vary between chip families. To check what's available, make sure to pick the MCU you're targeting in the top menu in the [documentation](https://docs.embassy.dev/embassy-nrf).
22 23
23For MCUs with TrustZone support, both Secure (S) and Non-Secure (NS) modes are supported. Running in Secure mode 24For MCUs with TrustZone support, both Secure (S) and Non-Secure (NS) modes are supported. Running in Secure mode
24allows running Rust code without a SPM or TF-M binary, saving flash space and simplifying development. 25allows running Rust code without a SPM or TF-M binary, saving flash space and simplifying development.