~ruther/avr-device

ref: f72d85ee3b44f9bfb5faacbf26b0a04bbb50b579 avr-device/src/devices/mod.rs -rw-r--r-- 309 bytes
f72d85ee — Rahix attiny85: Update USI patch 5 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
cfg_if::cfg_if! {
    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