Enum stm32f103xx::tim1::ccmr1_output::OC1MR
[−]
[src]
pub enum OC1MR { FROZEN, SETACTIVE, SETINACTIVE, TOGGLE, FORCEINACTIVE, FORCEACTIVE, PWM1, PWM2, }
Possible values of the field OC1M
Variants
FROZEN
The comparison between the output compare register TIMx_CCRy and the counter TIMx_CNT has no effect on the outputs(
SETACTIVE
Set channel y to active level on match. OCyREF signal is forced high when the counter TIMx_CNT matches the capture/compare register y (TIMx_CCRy).
SETINACTIVE
Set channel y to inactive level on match. OCyREF signal is forced low when the counter TIMx_CNT matches the capture/compare register y (TIMx_CCRy).
TOGGLE
OCyREF toggles when TIMx_CNT=TIMx_CCRy.
FORCEINACTIVE
OCyREF is forced low.
FORCEACTIVE
OCyREF is forced high.
PWM1
In upcounting, channel 1 is active as long as TIMx_CNT<TIMx_CCRy else inactive. In downcounting, channel 1 is inactive (OCyREF=‘0) as long as TIMx_CNT>TIMx_CCRy else active (OCyREF=1).
PWM2
In upcounting, channel y is inactive as long as TIMx_CNT<TIMx_CCRy else active. In downcounting, channel y is active as long as TIMx_CNT>TIMx_CCRy else inactive.
Methods
impl OC1MR
[src]
pub fn bits(&self) -> u8
[src]
Value of the field as raw bits
pub fn is_frozen(&self) -> bool
[src]
Checks if the value of the field is FROZEN
pub fn is_set_active(&self) -> bool
[src]
Checks if the value of the field is SETACTIVE
pub fn is_set_inactive(&self) -> bool
[src]
Checks if the value of the field is SETINACTIVE
pub fn is_toggle(&self) -> bool
[src]
Checks if the value of the field is TOGGLE
pub fn is_force_inactive(&self) -> bool
[src]
Checks if the value of the field is FORCEINACTIVE
pub fn is_force_active(&self) -> bool
[src]
Checks if the value of the field is FORCEACTIVE
pub fn is_pwm1(&self) -> bool
[src]
Checks if the value of the field is PWM1
pub fn is_pwm2(&self) -> bool
[src]
Checks if the value of the field is PWM2
Trait Implementations
impl Clone for OC1MR
[src]
fn clone(&self) -> OC1MR
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Copy for OC1MR
[src]
impl Debug for OC1MR
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more