Struct esp32c3_hal::ledc::LEDC

source ·
pub struct LEDC<'d> { /* private fields */ }
Expand description

LEDC (LED PWM Controller)

Implementations§

source§

impl<'d> LEDC<'d>

source

pub fn new( _instance: impl Peripheral<P = LEDC> + 'd, clock_control_config: &'d Clocks<'_>, system: &mut PeripheralClockControl ) -> LEDC<'d>

Return a new LEDC

source

pub fn set_global_slow_clock(&mut self, clock_source: LSGlobalClkSource)

Set global slow clock source

source

pub fn get_timer<S>(&self, number: Number) -> Timer<'_, S>where S: TimerSpeed,

Return a new timer

source

pub fn get_channel<S, O>( &self, number: Number, output_pin: impl Peripheral<P = O> + 'd ) -> Channel<'_, S, O>where S: TimerSpeed, O: OutputPin,

Return a new channel

Auto Trait Implementations§

§

impl<'d> !RefUnwindSafe for LEDC<'d>

§

impl<'d> !Send for LEDC<'d>

§

impl<'d> !Sync for LEDC<'d>

§

impl<'d> Unpin for LEDC<'d>

§

impl<'d> !UnwindSafe for LEDC<'d>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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 Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.