rpk-builder 0.1.1

RPK Keyboard builder
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![no_std]

#[cfg(feature = "rp")]
pub mod rp {
    pub use embassy_rp::*;
}

#[cfg(feature = "defmt")]
use defmt_rtt as _;

pub use rpk_firmware::*;
pub use rpk_macros::*;
pub use static_cell::StaticCell;