A custom OS for the xteink x4 ebook reader
at main 14 lines 242 B view raw
1// plump - e-reader firmware for the XTEink X4 2 3#![no_std] 4 5extern crate alloc; 6 7pub use plump_kernel::board; 8pub use plump_kernel::drivers; 9pub use plump_kernel::error; 10pub use plump_kernel::kernel; 11 12pub mod apps; 13pub mod fonts; 14pub mod ui;