diff options
author | Diego Barrios Romero <eldruin@gmail.com> | 2018-11-11 07:51:02 +0100 |
---|---|---|
committer | Diego Barrios Romero <eldruin@gmail.com> | 2018-11-11 07:51:02 +0100 |
commit | 8b9e9ecdb85a30ac1c57fe6b96498cae6ad9f7cc (patch) | |
tree | 1c1464f861566df450b607f5f8024e41caea26c0 /src/devices/channels.rs | |
parent | f28b8e1379f5a2c2f0283a280c58fef61629f1f6 (diff) | |
download | ads1x1x-async-8b9e9ecdb85a30ac1c57fe6b96498cae6ad9f7cc.tar.gz ads1x1x-async-8b9e9ecdb85a30ac1c57fe6b96498cae6ad9f7cc.tar.xz ads1x1x-async-8b9e9ecdb85a30ac1c57fe6b96498cae6ad9f7cc.zip |
Add support for channel selection
Diffstat (limited to 'src/devices/channels.rs')
-rw-r--r-- | src/devices/channels.rs | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/src/devices/channels.rs b/src/devices/channels.rs index 2482df5..c202ad3 100644 --- a/src/devices/channels.rs +++ b/src/devices/channels.rs @@ -1,5 +1,5 @@ //! ADC input channels -use { Ads1x1x, ic, hal }; +use { Ads1x1x, ic, hal, Config, BitFlags as BF }; /// ADC input channel selection #[allow(dead_code)] @@ -68,3 +68,19 @@ impl_channel!(Ads1115, SingleA0); impl_channel!(Ads1115, SingleA1); impl_channel!(Ads1115, SingleA2); impl_channel!(Ads1115, SingleA3); + +impl Config { + pub(crate) fn with_mux_bits(&self, ch: ChannelSelection) -> Self { + use self::ChannelSelection as CS; + match ch { + CS::DifferentialA0A1 => self.with_low( BF::MUX2).with_low( BF::MUX1).with_low( BF::MUX0), + CS::DifferentialA0A3 => self.with_low( BF::MUX2).with_low( BF::MUX1).with_high(BF::MUX0), + CS::DifferentialA1A3 => self.with_low( BF::MUX2).with_high(BF::MUX1).with_low( BF::MUX0), + CS::DifferentialA2A3 => self.with_low( BF::MUX2).with_high(BF::MUX1).with_high(BF::MUX0), + CS::SingleA0 => self.with_high(BF::MUX2).with_low( BF::MUX1).with_low( BF::MUX0), + CS::SingleA1 => self.with_high(BF::MUX2).with_low( BF::MUX1).with_high(BF::MUX0), + CS::SingleA2 => self.with_high(BF::MUX2).with_high(BF::MUX1).with_low( BF::MUX0), + CS::SingleA3 => self.with_high(BF::MUX2).with_high(BF::MUX1).with_high(BF::MUX0), + } + } +} |