rp_hal_common/
lib.rs

1//! Common HAL code
2//!
3//! This library contains types and functions which are shared between the
4//! RP2040 HAL and the RP235x HAL.
5//!
6//! You shouldn't include anything here which requires either the `cortex-m`
7//! crate, or a PAC.
8
9#![no_std]
10
11pub mod uart;