aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorIan McIntyre <me@mciantyre.dev>2025-06-14 14:48:59 -0400
committerIan McIntyre <me@mciantyre.dev>2025-11-26 10:49:21 -0500
commit2fec327652c16c0352473f9a36152493630a7f57 (patch)
tree098a6168ec44231286dda73ebc423c8851a5df05 /Cargo.toml
parenteb47674359ea27cc5e7824a234067491ff01ab13 (diff)
Update cortex-m-rt to 0.7.5HEADmain
There's an unreleased commit upstream to support stack painting with custom memory layouts, like ours. I eagerly defined the _stack_end symbol. Tested on hardware.
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index bb93245..daf59d0 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -18,7 +18,7 @@ device = ["cortex-m-rt/device"]
cfg-if = "1.0"
[target.'cfg(all(target_arch = "arm", target_os = "none"))'.dependencies]
-cortex-m-rt = { version = "=0.7.3", features = ["set-vtor", "set-sp"] }
+cortex-m-rt = { version = "=0.7.5", features = ["set-vtor", "set-sp"] }
[target.'cfg(all(target_arch = "arm", target_os = "none"))'.dev-dependencies]
board = { path = "board" }