Embassy
embassy-stm32

Crates

git

Versions

stm32h7b3vi

Flavors

Struct embassy_stm32::peripherals::DCMI

·
pub struct DCMI { /* private fields */ }
Expand description

DCMI peripheral

Implementations§

source§

impl DCMI

source

pub unsafe fn steal() -> Self

Unsafely create an instance of this peripheral out of thin air.

§Safety

You must ensure that you’re only using one instance of this type at a time.

Trait Implementations§

source§

impl D0Pin<DCMI> for PA9

source§

fn af_num(&self) -> u8

Get the AF number needed to use this pin as D0Pin
source§

impl D0Pin<DCMI> for PC6

source§

fn af_num(&self) -> u8

Get the AF number needed to use this pin as D0Pin
source§

impl D10Pin<DCMI> for PB5

source§

fn af_num(&self) -> u8

Get the AF number needed to use this pin as D10Pin
source§

impl D10Pin<DCMI> for PD6

source§

fn af_num(&self) -> u8

Get the AF number needed to use this pin as D10Pin
source§

impl D11Pin<DCMI> for PD2

source§

fn af_num(&self) -> u8

Get the AF number needed to use this pin as D11Pin
source§

impl D12Pin<DCMI> for PD12

source§

fn af_num(&self) -> u8

Get the AF number needed to use this pin as D12Pin
source§

impl D13Pin<DCMI> for PD13

source§

fn af_num(&self) -> u8

Get the AF number needed to use this pin as D13Pin
source§

impl D1Pin<DCMI> for PA10

source§

fn af_num(&self) -> u8

Get the AF number needed to use this pin as D1Pin
source§

impl D1Pin<DCMI> for PC7

source§

fn af_num(&self) -> u8

Get the AF number needed to use this pin as D1Pin
source§

impl D2Pin<DCMI> for PB13

source§

fn af_num(&self) -> u8

Get the AF number needed to use this pin as D2Pin
source§

impl D2Pin<DCMI> for PC8

source§

fn af_num(&self) -> u8

Get the AF number needed to use this pin as D2Pin
source§

impl D2Pin<DCMI> for PE0

source§

fn af_num(&self) -> u8

Get the AF number needed to use this pin as D2Pin
source§

impl D3Pin<DCMI> for PC9

source§

fn af_num(&self) -> u8

Get the AF number needed to use this pin as D3Pin
source§

impl D3Pin<DCMI> for PE1

source§

fn af_num(&self) -> u8

Get the AF number needed to use this pin as D3Pin
source§

impl D4Pin<DCMI> for PC11

source§

fn af_num(&self) -> u8

Get the AF number needed to use this pin as D4Pin
source§

impl D4Pin<DCMI> for PE4

source§

fn af_num(&self) -> u8

Get the AF number needed to use this pin as D4Pin
source§

impl D5Pin<DCMI> for PB6

source§

fn af_num(&self) -> u8

Get the AF number needed to use this pin as D5Pin
source§

impl D5Pin<DCMI> for PD3

source§

fn af_num(&self) -> u8

Get the AF number needed to use this pin as D5Pin
source§

impl D6Pin<DCMI> for PB8

source§

fn af_num(&self) -> u8

Get the AF number needed to use this pin as D6Pin
source§

impl D6Pin<DCMI> for PE5

source§

fn af_num(&self) -> u8

Get the AF number needed to use this pin as D6Pin
source§

impl D7Pin<DCMI> for PB9

source§

fn af_num(&self) -> u8

Get the AF number needed to use this pin as D7Pin
source§

impl D7Pin<DCMI> for PE6

source§

fn af_num(&self) -> u8

Get the AF number needed to use this pin as D7Pin
source§

impl D8Pin<DCMI> for PC10

source§

fn af_num(&self) -> u8

Get the AF number needed to use this pin as D8Pin
source§

impl D9Pin<DCMI> for PC12

source§

fn af_num(&self) -> u8

Get the AF number needed to use this pin as D9Pin
source§

impl HSyncPin<DCMI> for PA4

source§

fn af_num(&self) -> u8

Get the AF number needed to use this pin as HSyncPin
source§

impl Instance for DCMI

§

type Interrupt = DCMI_PSSI

Interrupt for this instance.
source§

impl Peripheral for DCMI

§

type P = DCMI

Peripheral singleton type
source§

unsafe fn clone_unchecked(&self) -> Self::P

Unsafely clone (duplicate) a peripheral singleton. Read more
source§

fn into_ref<'a>(self) -> PeripheralRef<'a, Self::P>
where Self: 'a,

Convert a value into a PeripheralRef. Read more
source§

impl PixClkPin<DCMI> for PA6

source§

fn af_num(&self) -> u8

Get the AF number needed to use this pin as PixClkPin
source§

impl VSyncPin<DCMI> for PB7

source§

fn af_num(&self) -> u8

Get the AF number needed to use this pin as VSyncPin
source§

impl RccPeripheral for DCMI

Auto Trait Implementations§

§

impl Freeze for DCMI

§

impl RefUnwindSafe for DCMI

§

impl Send for DCMI

§

impl Sync for DCMI

§

impl Unpin for DCMI

§

impl UnwindSafe for DCMI

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> FrameDma<DCMI> for T
where T: Channel + MuxChannel<Mux = DMAMUX1>,

source§

fn request(&self) -> u8

Get the DMA request number needed to use this channel asFrameDma Note: in some chips, ST calls this the “channel”, and calls channels “streams”. embassy-stm32 always uses the “channel” and “request number” names.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.