aboutsummaryrefslogtreecommitdiff
path: root/embassy-nxp/src/pwm.rs
blob: c87a39c345fa6a017a74bf31dced1f10ef7b89bd (plain)
1
2
3
4
5
6
7
#![macro_use]

//! Pulse-Width Modulation (PWM) driver.

#[cfg_attr(feature = "lpc55-core0", path = "./pwm/lpc55.rs")]
mod inner;
pub use inner::*;