diff options
author | Diego Barrios Romero <eldruin@gmail.com> | 2018-11-08 18:56:15 +0100 |
---|---|---|
committer | Diego Barrios Romero <eldruin@gmail.com> | 2018-11-08 18:56:15 +0100 |
commit | 2f4284b914fb187ae485918b3f64c0ff2360ddb1 (patch) | |
tree | 353d282a81277e2bfb0a89b9babc02122cde1b55 /src/devices/ads1x1x/mod.rs | |
parent | 4905c13ae1e77cad1a325d66000de930c1e4abbb (diff) | |
download | ads1x1x-async-2f4284b914fb187ae485918b3f64c0ff2360ddb1.tar.gz ads1x1x-async-2f4284b914fb187ae485918b3f64c0ff2360ddb1.tar.xz ads1x1x-async-2f4284b914fb187ae485918b3f64c0ff2360ddb1.zip |
Split common functions into tier1 features module
Diffstat (limited to 'src/devices/ads1x1x/mod.rs')
-rw-r--r-- | src/devices/ads1x1x/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/devices/ads1x1x/mod.rs b/src/devices/ads1x1x/mod.rs index b7146a9..95d8907 100644 --- a/src/devices/ads1x1x/mod.rs +++ b/src/devices/ads1x1x/mod.rs @@ -7,3 +7,4 @@ enum OperatingMode { mod common; mod mode; +mod features; |