Fix mistake in lib.rs Signed-off-by: Rahix <rahix@rahix.de>
1 files changed, 6 insertions(+), 1 deletions(-) M src/lib.rs
M src/lib.rs => src/lib.rs +6 -1
@@ 20,7 20,12 @@ cfg_if::cfg_if! { } } -#[cfg(any(feature = "attiny85", feature = "atmega32u4"))] +#[cfg(any( + feature = "atmega8", + feature = "atmega328p", + feature = "atmega32u4", + feature = "attiny85", +))] impl Peripherals { /// Returns all the peripherals *once* #[inline]