From c1987e34c2bb49c645f4f7e290b50776772c4192 Mon Sep 17 00:00:00 2001 From: Dreaded_X Date: Wed, 5 Jul 2023 16:24:36 +0200 Subject: [PATCH] Added toolchain file to make sure the correct toolchain gets selected for the project --- rust-toolchain.toml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 rust-toolchain.toml diff --git a/rust-toolchain.toml b/rust-toolchain.toml new file mode 100644 index 0000000..19d011e --- /dev/null +++ b/rust-toolchain.toml @@ -0,0 +1,3 @@ +[toolchain] +channel = "nightly" +targets = ["thumbv6m-none-eabi"]