diff options
| author | Dario Nieuwenhuis <[email protected]> | 2023-12-23 15:48:47 +0100 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2023-12-23 15:48:47 +0100 |
| commit | c46b076d5b40ddbe74ddeb7f9296b394c078538f (patch) | |
| tree | c550e2f4b17eb578809a2d9cb4cc62bfd0df1ee2 | |
| parent | 05c8d410a229f838c1acbe415f44f6f0574e1562 (diff) | |
nrf: some doc fixes.
| -rw-r--r-- | embassy-nrf/Cargo.toml | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/embassy-nrf/Cargo.toml b/embassy-nrf/Cargo.toml index 4648d56d9..837a941a9 100644 --- a/embassy-nrf/Cargo.toml +++ b/embassy-nrf/Cargo.toml | |||
| @@ -53,8 +53,8 @@ time-driver-rtc1 = ["_time-driver"] | |||
| 53 | nfc-pins-as-gpio = [] | 53 | nfc-pins-as-gpio = [] |
| 54 | 54 | ||
| 55 | ## Allow using the RST pin as a regular GPIO pin. | 55 | ## Allow using the RST pin as a regular GPIO pin. |
| 56 | ## * nrf52805, nrf52810, nrf52811, nrf52832: P0_21 | 56 | ## * nRF52805, nRF52810, nRF52811, nRF52832: P0_21 |
| 57 | ## * nrf52820, nrf52833, nrf52840: P0_18 | 57 | ## * nRF52820, nRF52833, nRF52840: P0_18 |
| 58 | reset-pin-as-gpio = [] | 58 | reset-pin-as-gpio = [] |
| 59 | 59 | ||
| 60 | ## Implements the MultiwriteNorFlash trait for QSPI. Should only be enabled if your external | 60 | ## Implements the MultiwriteNorFlash trait for QSPI. Should only be enabled if your external |
| @@ -62,29 +62,29 @@ reset-pin-as-gpio = [] | |||
| 62 | qspi-multiwrite-flash = [] | 62 | qspi-multiwrite-flash = [] |
| 63 | 63 | ||
| 64 | #! ### Chip selection features | 64 | #! ### Chip selection features |
| 65 | ## NRF52805 | 65 | ## nRF52805 |
| 66 | nrf52805 = ["nrf52805-pac", "_nrf52"] | 66 | nrf52805 = ["nrf52805-pac", "_nrf52"] |
| 67 | ## NRF52810 | 67 | ## nRF52810 |
| 68 | nrf52810 = ["nrf52810-pac", "_nrf52"] | 68 | nrf52810 = ["nrf52810-pac", "_nrf52"] |
| 69 | ## NRF52811 | 69 | ## nRF52811 |
| 70 | nrf52811 = ["nrf52811-pac", "_nrf52"] | 70 | nrf52811 = ["nrf52811-pac", "_nrf52"] |
| 71 | ## NRF52820 | 71 | ## nRF52820 |
| 72 | nrf52820 = ["nrf52820-pac", "_nrf52"] | 72 | nrf52820 = ["nrf52820-pac", "_nrf52"] |
| 73 | ## NRF52832 | 73 | ## nRF52832 |
| 74 | nrf52832 = ["nrf52832-pac", "_nrf52", "_nrf52832_anomaly_109"] | 74 | nrf52832 = ["nrf52832-pac", "_nrf52", "_nrf52832_anomaly_109"] |
| 75 | ## NRF52833 | 75 | ## nRF52833 |
| 76 | nrf52833 = ["nrf52833-pac", "_nrf52", "_gpio-p1"] | 76 | nrf52833 = ["nrf52833-pac", "_nrf52", "_gpio-p1"] |
| 77 | ## NRF52840 | 77 | ## nRF52840 |
| 78 | nrf52840 = ["nrf52840-pac", "_nrf52", "_gpio-p1"] | 78 | nrf52840 = ["nrf52840-pac", "_nrf52", "_gpio-p1"] |
| 79 | ## NRF5340-app-s | 79 | ## nRF5340 application core in Secure mode |
| 80 | nrf5340-app-s = ["_nrf5340-app", "_s"] | 80 | nrf5340-app-s = ["_nrf5340-app", "_s"] |
| 81 | ## NRF5340-app-ns | 81 | ## nRF5340 application core in Non-Secure mode |
| 82 | nrf5340-app-ns = ["_nrf5340-app", "_ns"] | 82 | nrf5340-app-ns = ["_nrf5340-app", "_ns"] |
| 83 | ## NRF5340-net | 83 | ## nRF5340 network core |
| 84 | nrf5340-net = ["_nrf5340-net"] | 84 | nrf5340-net = ["_nrf5340-net"] |
| 85 | ## NRF9160-s | 85 | ## nRF9160 in Secure mode |
| 86 | nrf9160-s = ["_nrf9160", "_s"] | 86 | nrf9160-s = ["_nrf9160", "_s"] |
| 87 | ## NRF9160-ns | 87 | ## nRF9160 in Non-Secure mode |
| 88 | nrf9160-ns = ["_nrf9160", "_ns"] | 88 | nrf9160-ns = ["_nrf9160", "_ns"] |
| 89 | 89 | ||
| 90 | # Features starting with `_` are for internal use only. They're not intended | 90 | # Features starting with `_` are for internal use only. They're not intended |
