[][src]Struct avr_device::atmega8::tc2::RegisterBlock

#[repr(C)]pub struct RegisterBlock {
    pub assr: ASSR,
    pub ocr2: OCR2,
    pub tcnt2: TCNT2,
    pub tccr2: TCCR2,
    pub sfior: SFIOR,
    pub tifr: TIFR,
    pub timsk: TIMSK,
    // some fields omitted
}

Register block

Fields

assr: ASSR

0x00 - Asynchronous Status Register

ocr2: OCR2

0x01 - Timer/Counter2 Output Compare Register

tcnt2: TCNT2

0x02 - Timer/Counter2

tccr2: TCCR2

0x03 - Timer/Counter2 Control Register

sfior: SFIOR

0x0e - Special Function IO Register

tifr: TIFR

0x16 - Timer/Counter Interrupt Flag Register

timsk: TIMSK

0x17 - Timer/Counter Interrupt Mask register

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.