diff --git a/src/devices/mod.rs b/src/devices/mod.rs index a67f789..aa56d30 100644 --- a/src/devices/mod.rs +++ b/src/devices/mod.rs @@ -87,6 +87,10 @@ pub mod atmega64; #[cfg(feature = "atmega644")] pub mod atmega644; +/// [ATmega88P](https://www.microchip.com/wwwproducts/en/ATmega88P) +#[cfg(feature = "atmega88p")] +pub mod atmega88p; + /// [ATtiny13A](https://www.microchip.com/wwwproducts/en/ATtiny13A) #[cfg(feature = "attiny13a")] pub mod attiny13a; diff --git a/src/lib.rs b/src/lib.rs index 9300011..b296383 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -21,6 +21,7 @@ #![cfg_attr(feature = "atmega48p", doc = "**atmega48p**,")] #![cfg_attr(feature = "atmega64", doc = "**atmega64**,")] #![cfg_attr(feature = "atmega644", doc = "**atmega644**,")] +#![cfg_attr(feature = "atmega88p", doc = "**atmega88p**,")] #![cfg_attr(feature = "attiny13a", doc = "**attiny13a**,")] #![cfg_attr(feature = "attiny167", doc = "**attiny167**,")] #![cfg_attr(feature = "attiny1614", doc = "**attiny1614**,")] @@ -70,6 +71,7 @@ //! `atmega48p`, //! `atmega64`, //! `atmega644`, +//! `atmega88p`, //! `attiny13a`, //! `attiny167`, //! `attiny1614`, @@ -233,6 +235,7 @@ compile_error!( * atmega644 * atmega8 * atmega8u2 + * atmega88p * attiny13a * attiny167 * attiny1614 @@ -298,6 +301,8 @@ pub use crate::devices::atmega64; pub use crate::devices::atmega644; #[cfg(feature = "atmega8")] pub use crate::devices::atmega8; +#[cfg(feature = "atmega88p")] +pub use crate::devices::atmega88p; #[cfg(feature = "atmega8u2")] pub use crate::devices::atmega8u2; #[cfg(feature = "attiny13a")]