kernel_thread/device/
mod.rs

1
2
3
4
5
6
7
8
9
//! 设备相关的模块
//!
//! 初始化设备相关的模块,通过 ipc 向 root-task 查找特定的服务

pub mod uart;

pub(super) fn init() {
    uart::init();
}