From f18b5af0a22e1526d264cd855fdfee9677c707bd Mon Sep 17 00:00:00 2001 From: Hugues de Valon Date: Sun, 4 Oct 2020 19:55:23 +0100 Subject: [PATCH] Also add examples to target Armv8-M Signed-off-by: Hugues de Valon --- .cargo/config | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.cargo/config b/.cargo/config index 7241c1a..bca7d2d 100644 --- a/.cargo/config +++ b/.cargo/config @@ -31,7 +31,10 @@ rustflags = [ [build] # Pick ONE of these compilation targets -# target = "thumbv6m-none-eabi" # Cortex-M0 and Cortex-M0+ -target = "thumbv7m-none-eabi" # Cortex-M3 -# target = "thumbv7em-none-eabi" # Cortex-M4 and Cortex-M7 (no FPU) -# target = "thumbv7em-none-eabihf" # Cortex-M4F and Cortex-M7F (with FPU) +# target = "thumbv6m-none-eabi" # Cortex-M0 and Cortex-M0+ +target = "thumbv7m-none-eabi" # Cortex-M3 +# target = "thumbv7em-none-eabi" # Cortex-M4 and Cortex-M7 (no FPU) +# target = "thumbv7em-none-eabihf" # Cortex-M4F and Cortex-M7F (with FPU) +# target = "thumbv8m.base-none-eabi" # Cortex-M23 +# target = "thumbv8m.main-none-eabi" # Cortex-M33 (no FPU) +# target = "thumbv8m.main-none-eabihf" # Cortex-M33 (with FPU)