From 254a0dce912e252e78a42eead98429dc0b27f1ba Mon Sep 17 00:00:00 2001 From: Diego Barrios Romero Date: Sat, 17 Nov 2018 07:42:39 +0100 Subject: Add function to disable comparator --- tests/common/mod.rs | 2 ++ tests/tier2_i2c.rs | 8 ++++++++ 2 files changed, 10 insertions(+) (limited to 'tests') diff --git a/tests/common/mod.rs b/tests/common/mod.rs index 140941e..dc66431 100644 --- a/tests/common/mod.rs +++ b/tests/common/mod.rs @@ -27,6 +27,8 @@ impl BitFlags { pub const COMP_MODE : u16 = 0b0000_0000_0001_0000; pub const COMP_POL : u16 = 0b0000_0000_0000_1000; pub const COMP_LAT : u16 = 0b0000_0000_0000_0100; + pub const COMP_QUE1 : u16 = 0b0000_0000_0000_0010; + pub const COMP_QUE0 : u16 = 0b0000_0000_0000_0001; } pub struct Config { diff --git a/tests/tier2_i2c.rs b/tests/tier2_i2c.rs index 956aeb2..75c4b5f 100644 --- a/tests/tier2_i2c.rs +++ b/tests/tier2_i2c.rs @@ -50,3 +50,11 @@ mod can_set_comparator_latching { config_test!(lat, set_comparator_latching, ComparatorLatching::Latching, Config::default().with_high(BitFlags::COMP_LAT)); } +#[test] +fn can_disable_comparator() { + let config = Config::default().with_high(BitFlags::COMP_QUE1).with_high(BitFlags::COMP_QUE0); + let transactions = [ I2cTrans::write(DEV_ADDR, vec![Register::CONFIG, config.msb(), config.lsb()]) ]; + let mut dev = new_ads1014(&transactions); + dev.disable_comparator().unwrap(); + destroy_ads1014(dev); +} -- cgit v1.2.3-54-g00ecf