From 55d17f2c184903c568282a0398166ea58a0763a4 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Fri, 3 Feb 2023 08:43:36 +1100 Subject: [PATCH] Instruct devs to use nightly for embedded The embedded test crate requires usage of the nightly toolchain, fix the docs to show this. --- bitcoin/embedded/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bitcoin/embedded/README.md b/bitcoin/embedded/README.md index bfc433fe..92f8dd4f 100644 --- a/bitcoin/embedded/README.md +++ b/bitcoin/embedded/README.md @@ -4,13 +4,13 @@ To run the embedded test, first prepare your environment: ```shell sudo ./scripts/install-deps -rustup target add thumbv7m-none-eabi +rustup +nightly target add thumbv7m-none-eabi ``` Then: ```shell -source ./scripts/env.sh && cargo run --target thumbv7m-none-eabi +source ./scripts/env.sh && cargo +nightly run --target thumbv7m-none-eabi ``` Output should be something like: