~ruther/avr-device

ref: 1606c20e1c9b003dd0bed6694c2ac09b70ab1f4d avr-device/src/devices/mod.rs -rw-r--r-- 384 bytes
1606c20e — Jonah Dahlquist common: Fix a few patches 5 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
cfg_if::cfg_if! {
    if #[cfg(feature = "atmega1280")] {
        pub mod atmega1280;
    } else if #[cfg(feature = "atmega8")] {
        pub mod atmega8;
    } else if #[cfg(feature = "atmega328p")] {
        pub mod atmega328p;
    } else if #[cfg(feature = "atmega32u4")] {
        pub mod atmega32u4;
    } else if #[cfg(feature = "attiny85")] {
        pub mod attiny85;
    }
}
Do not follow this link