pub struct AdcMicrophoneComponent<A: 'static + Adc<'static>, P: 'static + Pin, const BUF_LEN: usize> { /* private fields */ }
Implementations§
Source§impl<A: 'static + Adc<'static>, P: 'static + Pin, const BUF_LEN: usize> AdcMicrophoneComponent<A, P, BUF_LEN>
impl<A: 'static + Adc<'static>, P: 'static + Pin, const BUF_LEN: usize> AdcMicrophoneComponent<A, P, BUF_LEN>
pub fn new( adc_mux: &'static MuxAdc<'static, A>, adc_channel: A::Channel, pin: Option<&'static P>, ) -> AdcMicrophoneComponent<A, P, BUF_LEN>
Trait Implementations§
Source§impl<A: 'static + Adc<'static>, P: 'static + Pin, const BUF_LEN: usize> Component for AdcMicrophoneComponent<A, P, BUF_LEN>
impl<A: 'static + Adc<'static>, P: 'static + Pin, const BUF_LEN: usize> Component for AdcMicrophoneComponent<A, P, BUF_LEN>
Source§type StaticInput = (&'static mut MaybeUninit<AdcDevice<'static, A>>, &'static mut MaybeUninit<[u16; BUF_LEN]>, &'static mut MaybeUninit<AdcMicrophone<'static, P>>)
type StaticInput = (&'static mut MaybeUninit<AdcDevice<'static, A>>, &'static mut MaybeUninit<[u16; BUF_LEN]>, &'static mut MaybeUninit<AdcMicrophone<'static, P>>)
An optional type to specify the chip or board specific static memory
that a component needs to setup the output object(s). This is the memory
that
crate::static_buf!()
would normally setup, but generic
components cannot setup static buffers for types which are
chip-dependent, so those buffers have to be passed in manually, and the
Component::StaticInput
type makes this possible.Source§type Output = &'static AdcMicrophone<'static, P>
type Output = &'static AdcMicrophone<'static, P>
The type (e.g., capsule, peripheral) that this implementation of
Component
produces via Component::finalize()
. This is typically
a static reference (&'static
).Source§fn finalize(self, s: Self::StaticInput) -> Self::Output
fn finalize(self, s: Self::StaticInput) -> Self::Output
Auto Trait Implementations§
impl<A, P, const BUF_LEN: usize> Freeze for AdcMicrophoneComponent<A, P, BUF_LEN>
impl<A, P, const BUF_LEN: usize> !RefUnwindSafe for AdcMicrophoneComponent<A, P, BUF_LEN>
impl<A, P, const BUF_LEN: usize> !Send for AdcMicrophoneComponent<A, P, BUF_LEN>
impl<A, P, const BUF_LEN: usize> !Sync for AdcMicrophoneComponent<A, P, BUF_LEN>
impl<A, P, const BUF_LEN: usize> Unpin for AdcMicrophoneComponent<A, P, BUF_LEN>
impl<A, P, const BUF_LEN: usize> !UnwindSafe for AdcMicrophoneComponent<A, P, BUF_LEN>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more