1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
//! Constants and definitions for AVR microcontrollers
//!
//! # Library structure
//!
//! This library contains definitions for every 8-bit AVR microcontroller.
//!
//! The information for each device is separated into submodules, named after
//! the microcontroller itself.

pub use self::gen::*;

mod gen;