rktk_drivers_rp/lib.rs
1#![doc = include_str!("../README.md")]
2//! This crate provides the rktk drivers for the RP2040 chip.
3//!
4//! Many drivers is in this crate are just convenient wrappers over [`rktk_drivers_common`], but
5//! implements some original drivers like [`split::pio_half_duplex`].
6#![no_std]
7
8pub mod display;
9pub mod flash;
10pub mod keyscan;
11pub mod mouse;
12pub mod rgb;
13pub mod split;
14pub mod system;