Fix target type to use ARM FPU.

This commit is contained in:
Lorenzo Good 2026-06-16 12:39:20 -04:00
parent f06a0a467d
commit d26c3fb608
Signed by: lorenzo
GPG key ID: 7FCD64BD81180ED0
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
[build]
target = "thumbv7m-none-eabi"
target = "thumbv7em-none-eabihf"
rustflags = [
"-C", "link-arg=-Tlink.x",
]

View file

@ -1,5 +1,5 @@
[toolchain]
channel = "1.96.0"
profile = "default"
targets = ["thumbv7m-none-eabi"]
targets = ["thumbv7em-none-eabihf"]
components = [ "rustfmt", "rust-analyzer", "clippy", "rust-src"]