init new shared periph crate

This commit is contained in:
Robin Müller 2025-04-12 17:01:53 +02:00
parent 5b2ded51f9
commit 23a5639ae1
Signed by: muellerr
GPG Key ID: A649FB78196E3849
4 changed files with 13 additions and 1 deletions

View File

@ -10,7 +10,7 @@ members = [
"examples/embassy",
"board-tests",
"bootloader",
"flashloader",
"flashloader", "vorago-shared-peripherals",
]
exclude = [
"flashloader/slot-a-blinky",

View File

@ -0,0 +1,7 @@
[package]
name = "vorago-shared-peripherals"
version = "0.1.0"
edition = "2024"
[dependencies]
derive-mmio = { path = "../../../ROMEO/derive-mmio" }

View File

@ -0,0 +1,3 @@
pub struct Config {
}

View File

@ -0,0 +1,2 @@
#![no_std]
pub mod ioconfig;