summaryrefslogtreecommitdiffstats
path: root/src/devices/common.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/common.rs')
-rw-r--r--src/devices/common.rs10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/devices/common.rs b/src/devices/common.rs
index 1121265..92b4f9e 100644
--- a/src/devices/common.rs
+++ b/src/devices/common.rs
@@ -5,7 +5,7 @@ use super::OperatingMode;
impl<DI, IC, CONV, MODE, E> Ads1x1x<DI, IC, CONV, MODE>
where
- DI: interface::WriteData<Error = E>
+ DI: interface::WriteData<Error = E> + interface::ReadData<Error = E>,
{
pub(super) fn set_operating_mode(&mut self, mode: OperatingMode) -> Result<(), Error<E>> {
let config;
@@ -18,6 +18,14 @@ where
Ok(())
}
+ /// Read whether a measurement is currently in progress.
+ pub fn is_measurement_in_progress(&mut self) -> Result<bool, Error<E>> {
+ let config = Config {
+ bits: self.iface.read_register(Register::CONFIG)?
+ };
+ Ok(!config.is_high(BitFlags::OS))
+ }
+
/// Reset the internal state of this driver to the default values.
///
/// *Note:* This does not alter the state or configuration of the device.