Merge pull request #198 from lulf/saadc-multiple-pins
Makes it possible to use the ADC with different analog pins
This commit is contained in:
commit
62ad8ebab0
@ -30,9 +30,9 @@ pub use saadc::{
|
|||||||
pub enum Error {}
|
pub enum Error {}
|
||||||
|
|
||||||
/// One-shot saadc. Continuous sample mode TODO.
|
/// One-shot saadc. Continuous sample mode TODO.
|
||||||
pub struct OneShot<'d, T: PositivePin> {
|
pub struct OneShot<'d> {
|
||||||
irq: interrupt::SAADC,
|
irq: interrupt::SAADC,
|
||||||
phantom: PhantomData<(&'d mut peripherals::SAADC, &'d mut T)>,
|
phantom: PhantomData<&'d mut peripherals::SAADC>,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Used to configure the SAADC peripheral.
|
/// Used to configure the SAADC peripheral.
|
||||||
@ -66,14 +66,13 @@ impl Default for Config {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'d, T: PositivePin> OneShot<'d, T> {
|
impl<'d> OneShot<'d> {
|
||||||
pub fn new(
|
pub fn new(
|
||||||
_saadc: impl Unborrow<Target = peripherals::SAADC> + 'd,
|
_saadc: impl Unborrow<Target = peripherals::SAADC> + 'd,
|
||||||
irq: impl Unborrow<Target = interrupt::SAADC> + 'd,
|
irq: impl Unborrow<Target = interrupt::SAADC> + 'd,
|
||||||
positive_pin: impl Unborrow<Target = T> + 'd,
|
|
||||||
config: Config,
|
config: Config,
|
||||||
) -> Self {
|
) -> Self {
|
||||||
unborrow!(irq, positive_pin);
|
unborrow!(irq);
|
||||||
|
|
||||||
let r = unsafe { &*SAADC::ptr() };
|
let r = unsafe { &*SAADC::ptr() };
|
||||||
|
|
||||||
@ -106,11 +105,6 @@ impl<'d, T: PositivePin> OneShot<'d, T> {
|
|||||||
w
|
w
|
||||||
});
|
});
|
||||||
|
|
||||||
// Set positive channel
|
|
||||||
r.ch[0]
|
|
||||||
.pselp
|
|
||||||
.write(|w| w.pselp().variant(positive_pin.channel()));
|
|
||||||
|
|
||||||
// Disable all events interrupts
|
// Disable all events interrupts
|
||||||
r.intenclr.write(|w| unsafe { w.bits(0x003F_FFFF) });
|
r.intenclr.write(|w| unsafe { w.bits(0x003F_FFFF) });
|
||||||
|
|
||||||
@ -123,30 +117,12 @@ impl<'d, T: PositivePin> OneShot<'d, T> {
|
|||||||
fn regs(&self) -> &saadc::RegisterBlock {
|
fn regs(&self) -> &saadc::RegisterBlock {
|
||||||
unsafe { &*SAADC::ptr() }
|
unsafe { &*SAADC::ptr() }
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
impl<'d, T: PositivePin> Drop for OneShot<'d, T> {
|
async fn sample_inner(&mut self, pin: PositiveChannel) -> i16 {
|
||||||
fn drop(&mut self) {
|
|
||||||
let r = self.regs();
|
let r = self.regs();
|
||||||
r.enable.write(|w| w.enable().disabled());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub trait Sample {
|
// Set positive channel
|
||||||
type SampleFuture<'a>: Future<Output = i16> + 'a
|
r.ch[0].pselp.write(|w| w.pselp().variant(pin));
|
||||||
where
|
|
||||||
Self: 'a;
|
|
||||||
|
|
||||||
fn sample<'a>(&'a mut self) -> Self::SampleFuture<'a>;
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<'d, T: PositivePin> Sample for OneShot<'d, T> {
|
|
||||||
#[rustfmt::skip]
|
|
||||||
type SampleFuture<'a> where Self: 'a = impl Future<Output = i16> + 'a;
|
|
||||||
|
|
||||||
fn sample<'a>(&'a mut self) -> Self::SampleFuture<'a> {
|
|
||||||
async move {
|
|
||||||
let r = self.regs();
|
|
||||||
|
|
||||||
// Set up the DMA
|
// Set up the DMA
|
||||||
let mut val: i16 = 0;
|
let mut val: i16 = 0;
|
||||||
@ -185,12 +161,35 @@ impl<'d, T: PositivePin> Sample for OneShot<'d, T> {
|
|||||||
val
|
val
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl<'d> Drop for OneShot<'d> {
|
||||||
|
fn drop(&mut self) {
|
||||||
|
let r = self.regs();
|
||||||
|
r.enable.write(|w| w.enable().disabled());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub trait Sample {
|
||||||
|
type SampleFuture<'a>: Future<Output = i16> + 'a
|
||||||
|
where
|
||||||
|
Self: 'a;
|
||||||
|
|
||||||
|
fn sample<'a, T: PositivePin>(&'a mut self, pin: &mut T) -> Self::SampleFuture<'a>;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'d> Sample for OneShot<'d> {
|
||||||
|
#[rustfmt::skip]
|
||||||
|
type SampleFuture<'a> where Self: 'a = impl Future<Output = i16> + 'a;
|
||||||
|
|
||||||
|
fn sample<'a, T: PositivePin>(&'a mut self, pin: &mut T) -> Self::SampleFuture<'a> {
|
||||||
|
self.sample_inner(pin.channel())
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// A pin that can be used as the positive end of a ADC differential in the SAADC periperhal.
|
/// A pin that can be used as the positive end of a ADC differential in the SAADC periperhal.
|
||||||
///
|
///
|
||||||
/// Currently negative is always shorted to ground (0V).
|
/// Currently negative is always shorted to ground (0V).
|
||||||
pub trait PositivePin: Unborrow<Target = Self> {
|
pub trait PositivePin {
|
||||||
fn channel(&self) -> PositiveChannel;
|
fn channel(&self) -> PositiveChannel;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user