~ruther/avr-device

ref: 82a95b823791494df21c1d946ef07dc41394a82a avr-device/src/devices/mod.rs -rw-r--r-- 240 bytes
82a95b82 — Rahix Update README 6 years ago
                                                                                
1
2
3
4
5
6
7
8
9
cfg_if::cfg_if! {
    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