diff options
-rw-r--r-- | src/devices/ads1x1x/mode/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/ads1x1x/mode/mod.rs b/src/devices/ads1x1x/mode/mod.rs index 81a5795..8e0e012 100644 --- a/src/devices/ads1x1x/mode/mod.rs +++ b/src/devices/ads1x1x/mode/mod.rs @@ -1,6 +1,8 @@ //! Functions for all devices specific to each operating mode use ic; +mod oneshot; +mod continuous; fn convert_measurement<IC>(register_data: u16) -> i16 where @@ -22,8 +24,6 @@ where } } -mod oneshot; -mod continuous; #[cfg(test)] mod tests { |