summaryrefslogtreecommitdiffstats
path: root/src/devices/mod.rs
blob: 529db04735219d9cf3423456202ecdf3ab20d747 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/// IC markers
pub mod ic {
    /// ADS1013 IC marker
    pub struct ADS1013;
    /// ADS1014 IC marker
    pub struct ADS1014;
    /// ADS1015 IC marker
    pub struct ADS1015;
    /// ADS1113 IC marker
    pub struct ADS1113;
    /// ADS1114 IC marker
    pub struct ADS1114;
    /// ADS1115 IC marker
    pub struct ADS1115;
    /// ADS1118 IC marker
    pub struct ADS1118;
}

mod ads1013;