first commit

This commit is contained in:
Zenn 2023-08-06 18:14:49 +02:00
commit c591b2c272
50 changed files with 2650 additions and 0 deletions

19
.cargo/config.toml Normal file
View file

@ -0,0 +1,19 @@
[build]
target = "arduboy.json"
target-dir = "./target"
[profile.release]
codegen-units = 1
lto = "fat"
opt-level = "z"
panic = "abort"
[profile.dev]
codegen-units = 1
lto = "fat"
opt-level = "z"
panic = "abort"
[unstable]
build-std = ["core", "compiler_builtins"]
build-std-features = ["compiler-builtins-mem"]