summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorDiego Barrios Romero <eldruin@gmail.com>2018-11-10 10:01:27 +0100
committerDiego Barrios Romero <eldruin@gmail.com>2018-11-10 10:01:27 +0100
commitf6ac6188a652bd7ccff772648d57cff9a0963e84 (patch)
treeeccb385ef79bd57367f6a59312907304c042fc8e /src/lib.rs
parente7532aef9723a4078874d42ccb9a616628f1b3e6 (diff)
downloadads1x1x-async-f6ac6188a652bd7ccff772648d57cff9a0963e84.tar.gz
ads1x1x-async-f6ac6188a652bd7ccff772648d57cff9a0963e84.tar.xz
ads1x1x-async-f6ac6188a652bd7ccff772648d57cff9a0963e84.zip
Add support for setting the comparator latching
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index ee37a1d..f144b01 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -175,6 +175,26 @@ pub enum ComparatorPolarity {
ActiveHigh
}
+/// Comparator polarity (only for ADS1x14, ADS1x15)
+///
+/// Select whether the ALERT/RDY pin latches after being asserted or clears
+/// after conversions are within the margin of the upper and lower
+/// threshold values.
+#[derive(Debug, Clone, PartialEq)]
+pub enum ComparatorLatching {
+ /// Nonlatching (default)
+ ///
+ /// The ALERT/RDY pin does not latch when asserted.
+ Nonlatching,
+ /// Latching
+ ///
+ /// The asserted ALERT/RDY pin remains latched until conversion data are
+ /// read by the master or an appropriate SMBus alert response is sent by
+ /// the master. The device responds with its address, and it is the lowest
+ /// address currently asserting the ALERT/RDY bus line.
+ Latching
+}
+
/// Possible slave addresses
#[derive(Debug, Clone)]
pub enum SlaveAddr {
@@ -220,6 +240,7 @@ impl BitFlags {
const DR0 : u16 = 0b0000_0000_0010_0000;
const COMP_MODE : u16 = 0b0000_0000_0001_0000;
const COMP_POL : u16 = 0b0000_0000_0000_1000;
+ const COMP_LAT : u16 = 0b0000_0000_0000_0100;
}