start of a hal crate

This commit is contained in:
Priec
2025-10-19 11:15:06 +02:00
commit 24ad631416
6 changed files with 271 additions and 0 deletions

13
Cargo.toml Normal file
View File

@@ -0,0 +1,13 @@
[package]
name = "stm32u575-hal"
version = "0.1.0"
edition = "2024"
license = "MIT OR Apache-2.0"
description = "Hardware Abstraction Layer for STM32U575 microcontrollers"
[dependencies]
cortex-m = { version = "0.7", features = ["critical-section-single-core"] }
cortex-m-rt = "0.7"
embedded-hal = "1.0.0"
vcell = "0.1.3"