Skip to content

Commit be44af6

Browse files
Merge pull request #96 from hug-dev/add-armv8m-targets
Also add examples to target Armv8-M
2 parents e1e9885 + f18b5af commit be44af6

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.cargo/config

+7-4
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,10 @@ rustflags = [
3131

3232
[build]
3333
# Pick ONE of these compilation targets
34-
# target = "thumbv6m-none-eabi" # Cortex-M0 and Cortex-M0+
35-
target = "thumbv7m-none-eabi" # Cortex-M3
36-
# target = "thumbv7em-none-eabi" # Cortex-M4 and Cortex-M7 (no FPU)
37-
# target = "thumbv7em-none-eabihf" # Cortex-M4F and Cortex-M7F (with FPU)
34+
# target = "thumbv6m-none-eabi" # Cortex-M0 and Cortex-M0+
35+
target = "thumbv7m-none-eabi" # Cortex-M3
36+
# target = "thumbv7em-none-eabi" # Cortex-M4 and Cortex-M7 (no FPU)
37+
# target = "thumbv7em-none-eabihf" # Cortex-M4F and Cortex-M7F (with FPU)
38+
# target = "thumbv8m.base-none-eabi" # Cortex-M23
39+
# target = "thumbv8m.main-none-eabi" # Cortex-M33 (no FPU)
40+
# target = "thumbv8m.main-none-eabihf" # Cortex-M33 (with FPU)

0 commit comments

Comments
 (0)