aboutsummaryrefslogtreecommitdiff
path: root/examples/Cargo.toml
diff options
context:
space:
mode:
authorJames Munns <[email protected]>2025-11-24 17:37:57 +0100
committerGitHub <[email protected]>2025-11-24 17:37:57 +0100
commitc552cf2434b847b7a8af06e15982eb29d07ad2fa (patch)
treebff3e9c1f1413fe19823fe6114ee199ef0765b40 /examples/Cargo.toml
parentd37f74b7be5abd75c4fef1f2a020550aedecd049 (diff)
Introduce clkout peripheral (#36)
Introduces a ClockOut peripheral, allowing for ensuring that internal clocks are operating correctly. Also fixes some incorrect PLL/Div4 usage.
Diffstat (limited to 'examples/Cargo.toml')
-rw-r--r--examples/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/Cargo.toml b/examples/Cargo.toml
index d1c6a2071..4f15a6aff 100644
--- a/examples/Cargo.toml
+++ b/examples/Cargo.toml
@@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0"
6 6
7[dependencies] 7[dependencies]
8cortex-m = { version = "0.7", features = ["critical-section-single-core"] } 8cortex-m = { version = "0.7", features = ["critical-section-single-core"] }
9cortex-m-rt = { version = "0.7" } 9cortex-m-rt = { version = "0.7", features = ["set-sp", "set-vtor"] }
10critical-section = "1.2.0" 10critical-section = "1.2.0"
11defmt = "1.0" 11defmt = "1.0"
12defmt-rtt = "1.0" 12defmt-rtt = "1.0"