summaryrefslogtreecommitdiffstats
path: root/src/devices/ads1x1x/mod.rs
blob: b7146a94ce8c0d36ca99f94b4e9e29381a5d6b41 (plain)
1
2
3
4
5
6
7
8
9
//! Functions for all devices

enum OperatingMode {
    OneShot,
    Continuous
}

mod common;
mod mode;