1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Describes the pins available on the atmega32.
#![allow(non_camel_case_types)]

use super::{
    super::{
        pin::{pin, port},
        Pin,
    },
    registers::*,
};

port!(A);
port!(B);
port!(C);
port!(D);