diff options
| author | 9names <[email protected]> | 2024-01-14 11:08:18 +1100 |
|---|---|---|
| committer | 9names <[email protected]> | 2024-01-14 11:08:18 +1100 |
| commit | bb755963025f55cc04aaabab1e0073b2edfa5bb6 (patch) | |
| tree | 0a095999bddf532b7bb29602d083f678812fcabf | |
| parent | 131ef00658903420fb08e4666c01d93c3b5fd943 (diff) | |
End all feature doc comments with a full stop
| -rw-r--r-- | embassy-rp/Cargo.toml | 26 |
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. |
| 26 | rt = [ "rp-pac/rt" ] | 26 | rt = [ "rp-pac/rt" ] |
| 27 | 27 | ||
| 28 | ## Enable defmt | 28 | ## Enable defmt. |
| 29 | defmt = ["dep:defmt", "embassy-usb-driver/defmt", "embassy-hal-internal/defmt"] | 29 | defmt = ["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. |
| 32 | critical-section-impl = ["critical-section/restore-state-u8"] | 32 | critical-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. |
| 38 | unstable-pac = [] | 38 | unstable-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. |
| 41 | time-driver = ["dep:embassy-time-driver", "embassy-time-driver?/tick-hz-1_000_000"] | 41 | time-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. |
| 44 | rom-func-cache = [] | 44 | rom-func-cache = [] |
| 45 | ## Enable intrinsics | 45 | ## Enable intrinsics. |
| 46 | intrinsics = [] | 46 | intrinsics = [] |
| 47 | ## Enable ROM v2 intrinsics | 47 | ## Enable ROM v2 intrinsics. |
| 48 | rom-v2-intrinsics = [] | 48 | rom-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. |
| 62 | boot2-at25sf128a = [] | 62 | boot2-at25sf128a = [] |
| 63 | ## GD25Q64cs | 63 | ## GD25Q64cs. |
| 64 | boot2-gd25q64cs = [] | 64 | boot2-gd25q64cs = [] |
| 65 | ## generic-03h | 65 | ## generic-03h. |
| 66 | boot2-generic-03h = [] | 66 | boot2-generic-03h = [] |
| 67 | ## IS25LP080 | 67 | ## IS25LP080. |
| 68 | boot2-is25lp080 = [] | 68 | boot2-is25lp080 = [] |
| 69 | ## ram-memcpy | 69 | ## ram-memcpy. |
| 70 | boot2-ram-memcpy = [] | 70 | boot2-ram-memcpy = [] |
| 71 | ## W25Q080 | 71 | ## W25Q080. |
| 72 | boot2-w25q080 = [] | 72 | boot2-w25q080 = [] |
| 73 | ## W25X10cl | 73 | ## W25X10cl. |
| 74 | boot2-w25x10cl = [] | 74 | boot2-w25x10cl = [] |
| 75 | 75 | ||
| 76 | [dependencies] | 76 | [dependencies] |
