First commit

This commit is contained in:
2026-01-22 18:09:14 +01:00
committed by Julien THILLARD
commit 7a25e89d4c
21 changed files with 609 additions and 0 deletions

16
Cargo.toml Normal file
View File

@@ -0,0 +1,16 @@
[package]
name = "kernel-rust"
version = "0.1.0"
edition = "2024"
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
[dependencies]
embedded-alloc = "0.7"
kernel-macros = { path = "kernel-macros" }
log = "0.4"
critical-section = { version = "1", features = ["restore-state-bool"] }