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] [build]
target = "thumbv7m-none-eabi" target = "thumbv7em-none-eabihf"
rustflags = [ rustflags = [
"-C", "link-arg=-Tlink.x", "-C", "link-arg=-Tlink.x",
] ]

View file

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