feat: initial commit for corne

This commit is contained in:
uttarayan21
2025-10-12 21:43:50 +05:30
commit d483267d6b
16 changed files with 3289 additions and 0 deletions

7
src/central.rs Normal file
View File

@@ -0,0 +1,7 @@
#![no_main]
#![no_std]
use rmk::macros::rmk_central;
#[rmk_central]
mod keyboard_central {}

7
src/peripheral.rs Normal file
View File

@@ -0,0 +1,7 @@
#![no_main]
#![no_std]
use rmk::macros::rmk_peripheral;
#[rmk_peripheral(id = 0)]
mod keyboard_peripheral {}