~ruther/avr-device

ref: 4d71c0ee76cee0bee651eb7b131bdad6a3c259b5 avr-device/src/devices/mod.rs -rw-r--r-- 165 bytes
4d71c0ee — Rahix Add interrupts and use cfg-if 5 years ago
                                                                                
1
2
3
4
5
6
7
cfg_if::cfg_if! {
    if #[cfg(feature = "atmega32u4")] {
        pub mod atmega32u4;
    } else if #[cfg(feature = "attiny85")] {
        pub mod attiny85;
    }
}
Do not follow this link