1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
//! Continuous measurement mode
use crate::{
channels::ChannelSelection, conversion, devices::OperatingMode, hal, interface, mode, Ads1x1x,
Error, ModeChangeError, Register,
};
use core::marker::PhantomData;
impl<DI, IC, CONV, E> Ads1x1x<DI, IC, CONV, mode::Continuous>
where
DI: interface::ReadData<Error = E> + interface::WriteData<Error = E>,
CONV: conversion::ConvertMeasurement,
{
/// Change operating mode to OneShot
pub fn into_one_shot(
mut self,
) -> Result<Ads1x1x<DI, IC, CONV, mode::OneShot>, ModeChangeError<E, Self>> {
if let Err(Error::I2C(e)) = self.set_operating_mode(OperatingMode::OneShot) {
return Err(ModeChangeError::I2C(e, self));
}
Ok(Ads1x1x {
iface: self.iface,
config: self.config,
fsr: self.fsr,
a_conversion_was_started: false,
_conv: PhantomData,
_ic: PhantomData,
_mode: PhantomData,
})
}
/// Read the most recent measurement
pub fn read(&mut self) -> Result<i16, Error<E>> {
let value = self.iface.read_register(Register::CONVERSION)?;
Ok(CONV::convert_measurement(value))
}
/// Select the channel for measurements.
///
/// Note that when changing the channel in continuous conversion mode, the
/// ongoing conversion will be completed.
/// The following conversions will use the new channel configuration.
pub fn select_channel<CH>(&mut self, _channel: &mut CH) -> Result<(), Error<E>>
where
CH: hal::adc::Channel<Ads1x1x<DI, IC, CONV, mode::OneShot>, ID = ChannelSelection>,
{
let config = self.config.with_mux_bits(CH::channel());
self.iface.write_register(Register::CONFIG, config.bits)?;
self.config = config;
Ok(())
}
}
|