diff options
Diffstat (limited to 'src/channels.rs')
-rw-r--r-- | src/channels.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/channels.rs b/src/channels.rs index f88e10e..d5ae7bc 100644 --- a/src/channels.rs +++ b/src/channels.rs @@ -1,5 +1,5 @@ //! ADC input channels -use { Ads1x1x, ic, hal, Config, BitFlags as BF }; +use {hal, ic, Ads1x1x, BitFlags as BF, Config}; /// ADC input channel selection #[allow(dead_code)] @@ -43,7 +43,7 @@ macro_rules! impl_channel { ChannelSelection::$CH } } - } + }; } impl_channel!(Ads1013, DifferentialA0A1); |