aboutsummaryrefslogtreecommitdiff
path: root/embassy-rp
diff options
context:
space:
mode:
author9names <[email protected]>2024-01-14 11:08:18 +1100
committer9names <[email protected]>2024-01-14 11:08:18 +1100
commitbb755963025f55cc04aaabab1e0073b2edfa5bb6 (patch)
tree0a095999bddf532b7bb29602d083f678812fcabf /embassy-rp
parent131ef00658903420fb08e4666c01d93c3b5fd943 (diff)
End all feature doc comments with a full stop
Diffstat (limited to 'embassy-rp')
-rw-r--r--embassy-rp/Cargo.toml26
1 files changed, 13 insertions, 13 deletions
diff --git a/embassy-rp/Cargo.toml b/embassy-rp/Cargo.toml
index ffed4c770..edb152a89 100644
--- a/embassy-rp/Cargo.toml
+++ b/embassy-rp/Cargo.toml
@@ -25,10 +25,10 @@ default = [ "rt" ]
25## Enable the RP runtime. 25## Enable the RP runtime.
26rt = [ "rp-pac/rt" ] 26rt = [ "rp-pac/rt" ]
27 27
28## Enable defmt 28## Enable defmt.
29defmt = ["dep:defmt", "embassy-usb-driver/defmt", "embassy-hal-internal/defmt"] 29defmt = ["dep:defmt", "embassy-usb-driver/defmt", "embassy-hal-internal/defmt"]
30 30
31## critical section that is safe for multicore use 31## critical section that is safe for multicore use.
32critical-section-impl = ["critical-section/restore-state-u8"] 32critical-section-impl = ["critical-section/restore-state-u8"]
33 33
34## Reexport the PAC for the currently enabled chip at `embassy_rp::pac`. 34## Reexport the PAC for the currently enabled chip at `embassy_rp::pac`.
@@ -37,14 +37,14 @@ critical-section-impl = ["critical-section/restore-state-u8"]
37## There are no plans to make this stable. 37## There are no plans to make this stable.
38unstable-pac = [] 38unstable-pac = []
39 39
40## Enable the timer for use with `embassy-time` with a 1MHz tick rate 40## Enable the timer for use with `embassy-time` with a 1MHz tick rate.
41time-driver = ["dep:embassy-time-driver", "embassy-time-driver?/tick-hz-1_000_000"] 41time-driver = ["dep:embassy-time-driver", "embassy-time-driver?/tick-hz-1_000_000"]
42 42
43## Enable ROM function cache 43## Enable ROM function cache.
44rom-func-cache = [] 44rom-func-cache = []
45## Enable intrinsics 45## Enable intrinsics.
46intrinsics = [] 46intrinsics = []
47## Enable ROM v2 intrinsics 47## Enable ROM v2 intrinsics.
48rom-v2-intrinsics = [] 48rom-v2-intrinsics = []
49 49
50## Allow using QSPI pins as GPIO pins. This is mostly not what you want (because your flash lives there) 50## Allow using QSPI pins as GPIO pins. This is mostly not what you want (because your flash lives there)
@@ -58,19 +58,19 @@ run-from-ram = []
58 58
59#! ### boot2 flash chip support 59#! ### boot2 flash chip support
60#! If none of these are enabled, w25q080 is used by default (used on the pico) 60#! If none of these are enabled, w25q080 is used by default (used on the pico)
61## AT25SF128a 61## AT25SF128a.
62boot2-at25sf128a = [] 62boot2-at25sf128a = []
63## GD25Q64cs 63## GD25Q64cs.
64boot2-gd25q64cs = [] 64boot2-gd25q64cs = []
65## generic-03h 65## generic-03h.
66boot2-generic-03h = [] 66boot2-generic-03h = []
67## IS25LP080 67## IS25LP080.
68boot2-is25lp080 = [] 68boot2-is25lp080 = []
69## ram-memcpy 69## ram-memcpy.
70boot2-ram-memcpy = [] 70boot2-ram-memcpy = []
71## W25Q080 71## W25Q080.
72boot2-w25q080 = [] 72boot2-w25q080 = []
73## W25X10cl 73## W25X10cl.
74boot2-w25x10cl = [] 74boot2-w25x10cl = []
75 75
76[dependencies] 76[dependencies]