[][src]Struct avr_device::atmega328p::tc0::RegisterBlock

#[repr(C)]pub struct RegisterBlock {
    pub tifr0: TIFR0,
    pub gtccr: GTCCR,
    pub tccr0a: TCCR0A,
    pub tccr0b: TCCR0B,
    pub tcnt0: TCNT0,
    pub ocr0a: OCR0A,
    pub ocr0b: OCR0B,
    pub timsk0: TIMSK0,
    // some fields omitted
}

Register block

Fields

tifr0: TIFR0

0x00 - Timer/Counter0 Interrupt Flag register

gtccr: GTCCR

0x0e - General Timer/Counter Control Register

tccr0a: TCCR0A

0x0f - Timer/Counter Control Register A

tccr0b: TCCR0B

0x10 - Timer/Counter Control Register B

tcnt0: TCNT0

0x11 - Timer/Counter0

ocr0a: OCR0A

0x12 - Timer/Counter0 Output Compare Register

ocr0b: OCR0B

0x13 - Timer/Counter0 Output Compare Register

timsk0: TIMSK0

0x39 - Timer/Counter0 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.