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

#[repr(C)]pub struct RegisterBlock {
    pub ocr0b: OCR0B,
    pub ocr0a: OCR0A,
    pub tccr0a: TCCR0A,
    pub gtccr: GTCCR,
    pub tcnt0: TCNT0,
    pub tccr0b: TCCR0B,
    pub tifr: TIFR,
    pub timsk: TIMSK,
    // some fields omitted
}

Register block

Fields

ocr0b: OCR0B

0x00 - Output Compare Register B

ocr0a: OCR0A

0x01 - Output Compare Register A

tccr0a: TCCR0A

0x02 - Timer/Counter Control Register A

gtccr: GTCCR

0x04 - General Timer/Counter Control Register

tcnt0: TCNT0

0x0a - Timer/Counter0

tccr0b: TCCR0B

0x0b - Timer/Counter Control Register B

tifr: TIFR

0x10 - Timer/Counter0 Interrupt Flag register

timsk: TIMSK

0x11 - 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.