pub struct Tcc2Pwm<I: PinId, M: PinMode> { /* private fields */ }
Implementations§
Trait Implementations§
Source§impl<I: PinId, M: PinMode> Pwm for Tcc2Pwm<I, M>
impl<I: PinId, M: PinMode> Pwm for Tcc2Pwm<I, M>
Source§type Channel = Channel
type Channel = Channel
Enumeration of channels that can be used with this
Pwm
interface Read moreSource§type Time = Rate<u32, 1, 1>
type Time = Rate<u32, 1, 1>
A time unit that can be converted into a human time unit (e.g. seconds)
Source§fn get_period(&self) -> Self::Time
fn get_period(&self) -> Self::Time
Returns the current PWM period
Source§fn get_max_duty(&self) -> Self::Duty
fn get_max_duty(&self) -> Self::Duty
Returns the maximum duty cycle value
Source§fn set_period<P>(&mut self, period: P)
fn set_period<P>(&mut self, period: P)
Sets a new PWM period
Auto Trait Implementations§
impl<I, M> Freeze for Tcc2Pwm<I, M>
impl<I, M> RefUnwindSafe for Tcc2Pwm<I, M>where
M: RefUnwindSafe,
I: RefUnwindSafe,
impl<I, M> Send for Tcc2Pwm<I, M>
impl<I, M> !Sync for Tcc2Pwm<I, M>
impl<I, M> Unpin for Tcc2Pwm<I, M>
impl<I, M> UnwindSafe for Tcc2Pwm<I, M>where
M: UnwindSafe,
I: UnwindSafe,
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