aboutsummaryrefslogtreecommitdiff
path: root/embassy-nrf/Cargo.toml
diff options
context:
space:
mode:
authornerwalt <[email protected]>2024-06-27 14:07:26 -0600
committernerwalt <[email protected]>2024-06-27 14:07:26 -0600
commit8a6b71b0bba450687c48b36c60273f825c3f6d4b (patch)
tree2e41e1c1c21cc1f23665cdf1534bbaebbdad4f80 /embassy-nrf/Cargo.toml
parent26e660722cca9151e5a9331c328421145509ab20 (diff)
Adding initial support for nrf9151 s and ns
Adding s and ns examples, including a reference TFM
Diffstat (limited to 'embassy-nrf/Cargo.toml')
-rw-r--r--embassy-nrf/Cargo.toml7
1 files changed, 7 insertions, 0 deletions
diff --git a/embassy-nrf/Cargo.toml b/embassy-nrf/Cargo.toml
index 02c3bfbbe..f21603556 100644
--- a/embassy-nrf/Cargo.toml
+++ b/embassy-nrf/Cargo.toml
@@ -100,6 +100,13 @@ nrf9160-s = ["_nrf9160", "_s"]
100## nRF9160 in Non-Secure mode 100## nRF9160 in Non-Secure mode
101nrf9160-ns = ["_nrf9160", "_ns"] 101nrf9160-ns = ["_nrf9160", "_ns"]
102 102
103# TODO - The nrf9151 is close enough to the nrf9160 for a lot of applications. It needs
104# more testing though and possilbly proper support
105## nRF9151 in Secure mode
106nrf9151-s = ["nrf9160-s"]
107## nRF9151 in Non-Secure mode
108nrf9151-ns = ["nrf9160-ns"]
109
103# Features starting with `_` are for internal use only. They're not intended 110# Features starting with `_` are for internal use only. They're not intended
104# to be enabled by other crates, and are not covered by semver guarantees. 111# to be enabled by other crates, and are not covered by semver guarantees.
105 112