Type Alias R

Source
pub type R = R<DIERrs>;
Expand description

Register DIER reader

Aliased Type§

struct R { /* private fields */ }

Implementations§

Source§

impl R

Source

pub fn uie(&self) -> UIE_R

Bit 0 - Update interrupt enable

Source

pub fn ccie(&self, n: u8) -> CCIE_R

Capture/Compare (1-2) interrupt enable

`n` is number of field in register. `n == 0` corresponds to `CC1IE` field.
Source

pub fn ccie_iter(&self) -> impl Iterator<Item = CCIE_R> + '_

Iterator for array of: Capture/Compare (1-2) interrupt enable

Source

pub fn cc1ie(&self) -> CCIE_R

Bit 1 - Capture/Compare 1 interrupt enable

Source

pub fn cc2ie(&self) -> CCIE_R

Bit 2 - Capture/Compare 2 interrupt enable

Source

pub fn tie(&self) -> TIE_R

Bit 6 - Trigger interrupt enable

Trait Implementations§

Source§

impl Debug for R

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more