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
FROZENThe comparison between the output compare register TIMx_CCRy and the counter TIMx_CNT has no effect on the outputs(
SETACTIVESet 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).
SETINACTIVESet 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).
TOGGLEOCyREF toggles when TIMx_CNT=TIMx_CCRy.
FORCEINACTIVEOCyREF is forced low.
FORCEACTIVEOCyREF is forced high.
PWM1In 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).
PWM2In 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]
impl OC1MRpub fn bits(&self) -> u8[src]
pub fn bits(&self) -> u8Value of the field as raw bits
pub fn is_frozen(&self) -> bool[src]
pub fn is_frozen(&self) -> boolChecks if the value of the field is FROZEN
pub fn is_set_active(&self) -> bool[src]
pub fn is_set_active(&self) -> boolChecks if the value of the field is SETACTIVE
pub fn is_set_inactive(&self) -> bool[src]
pub fn is_set_inactive(&self) -> boolChecks if the value of the field is SETINACTIVE
pub fn is_toggle(&self) -> bool[src]
pub fn is_toggle(&self) -> boolChecks if the value of the field is TOGGLE
pub fn is_force_inactive(&self) -> bool[src]
pub fn is_force_inactive(&self) -> boolChecks if the value of the field is FORCEINACTIVE
pub fn is_force_active(&self) -> bool[src]
pub fn is_force_active(&self) -> boolChecks if the value of the field is FORCEACTIVE
pub fn is_pwm1(&self) -> bool[src]
pub fn is_pwm1(&self) -> boolChecks if the value of the field is PWM1
pub fn is_pwm2(&self) -> bool[src]
pub fn is_pwm2(&self) -> boolChecks if the value of the field is PWM2
Trait Implementations
impl Clone for OC1MR[src]
impl Clone for OC1MRfn clone(&self) -> OC1MR[src]
fn clone(&self) -> OC1MRReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Copy for OC1MR[src]
impl Copy for OC1MRimpl Debug for OC1MR[src]
impl Debug for OC1MRfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for OC1MR[src]
impl PartialEq for OC1MR