From 2a2f25b35c8411a5932e576b5d0969d3928c7209 Mon Sep 17 00:00:00 2001 From: Diego Barrios Romero Date: Tue, 20 Nov 2018 19:07:16 +0100 Subject: Add function to select the measurement channel in continuous mode --- src/devices/mode/continuous.rs | 21 +++++++++++++++++++-- tests/mux_i2c.rs | 10 ++++++++++ 2 files changed, 29 insertions(+), 2 deletions(-) diff --git a/src/devices/mode/continuous.rs b/src/devices/mode/continuous.rs index 6bf5201..cd3edee 100644 --- a/src/devices/mode/continuous.rs +++ b/src/devices/mode/continuous.rs @@ -1,7 +1,8 @@ -//! Common functions +//! Continuous measurement mode use core::marker::PhantomData; -use { Ads1x1x, mode, Error, interface }; +use { Ads1x1x, conversion, Error, hal, interface, mode, Register }; +use channels::ChannelSelection; use super::super::OperatingMode; impl Ads1x1x @@ -29,3 +30,19 @@ where Ok(()) } } + +impl Ads1x1x +where + DI: interface::ReadData + interface::WriteData, + CONV: conversion::ConvertMeasurement, +{ + /// Select the channel for measurements. + pub fn select_channel(&mut self, _channel: &mut CH) -> Result<(), Error> + where + CH: hal::adc::Channel, ID = ChannelSelection> { + let config = self.config.with_mux_bits(CH::channel()); + self.iface.write_register(Register::CONFIG, config.bits)?; + self.config = config; + Ok(()) + } +} diff --git a/tests/mux_i2c.rs b/tests/mux_i2c.rs index ca10673..f448f04 100644 --- a/tests/mux_i2c.rs +++ b/tests/mux_i2c.rs @@ -49,6 +49,16 @@ macro_rules! mux_test { assert_eq!(-2048, measurement); destroy(dev); } + + #[test] + fn continuous_can_select_channel() { + let config = Config::default().with_high($config_bits); + let transactions = [ I2cTrans::write(DEV_ADDR, vec![Register::CONFIG, config.msb(), config.lsb()]) ]; + let dev = new(&transactions); + let mut dev = dev.into_continuous().unwrap(); + dev.select_channel(&mut channel::$CS).unwrap(); + destroy(dev); + } } }; } -- cgit v1.2.3-54-g00ecf