lpc13xx_pac/
lib.rs

1//! Peripheral access API for LPC13XX-PAC microcontrollers
2//! (generated using [svd2rust](https://github.com/rust-embedded/svd2rust)
3//! 0.25.0)
4//!
5//! You can find an overview of the API here:
6//! [svd2rust/#peripheral-api](https://docs.rs/svd2rust/0.25.0/svd2rust/#peripheral-api)
7//!
8//! For more details see the README here:
9//! [lpc-pac](https://github.com/lpc-rs/lpc-pac)
10//!
11//! This crate supports all LPC13XX-PAC devices; for the complete list please
12//! see:
13//! [lpc13xx-pac](https://crates.io/crates/lpc13xx-pac)
14//!
15//! Due to doc build limitations, not all devices may be shown on docs.rs;
16//! a representative few have been selected instead.
17#![allow(non_camel_case_types)]
18#![allow(non_snake_case)]
19#![no_std]
20mod generic;
21pub use self::generic::*;
22#[cfg(feature = "lpc1311")]
23pub mod lpc1311;
24
25#[cfg(feature = "lpc1313")]
26pub mod lpc1313;
27
28#[cfg(feature = "lpc1342")]
29pub mod lpc1342;
30
31#[cfg(feature = "lpc1343")]
32pub mod lpc1343;
33