From d08ed746c1d49720452c794f93104e6d2c0feae6 Mon Sep 17 00:00:00 2001 From: Elijah Mock <28277163+ekcom@users.noreply.github.com> Date: Sat, 3 Aug 2024 15:33:20 -0500 Subject: [PATCH] Update version in sample code to match actual --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 20cdbaa..2ad72eb 100644 --- a/README.md +++ b/README.md @@ -237,7 +237,7 @@ Some of the options for your `runner` are listed below: If you want to enable some of them, uncomment the `rp2040-hal` dependency in `Cargo.toml` and add the desired feature flags there. For example, to enable ROM functions for f64 math using the feature `rom-v2-intrinsics`: ``` - rp2040-hal = { version="0.9", features=["rt", "critical-section-impl", "rom-v2-intrinsics"] } + rp2040-hal = { version="0.10", features=["rt", "critical-section-impl", "rom-v2-intrinsics"] } ```