diff options
author | Diego Barrios Romero <eldruin@gmail.com> | 2018-11-17 07:42:39 +0100 |
---|---|---|
committer | Diego Barrios Romero <eldruin@gmail.com> | 2018-11-17 07:42:39 +0100 |
commit | 254a0dce912e252e78a42eead98429dc0b27f1ba (patch) | |
tree | 156284dd56c362a8563c1b588f360f21115806de /tests/common | |
parent | 67d84cc9c4aeef625a6a1c942186dd60069bb329 (diff) | |
download | ads1x1x-async-254a0dce912e252e78a42eead98429dc0b27f1ba.tar.gz ads1x1x-async-254a0dce912e252e78a42eead98429dc0b27f1ba.tar.xz ads1x1x-async-254a0dce912e252e78a42eead98429dc0b27f1ba.zip |
Add function to disable comparator
Diffstat (limited to 'tests/common')
-rw-r--r-- | tests/common/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
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 { |