[][src]Struct avr_device::atmega1280::tc4::RegisterBlock

#[repr(C)]pub struct RegisterBlock {
    pub tifr4: TIFR4,
    pub timsk4: TIMSK4,
    pub tccr4a: TCCR4A,
    pub tccr4b: TCCR4B,
    pub tccr4c: TCCR4C,
    pub tcnt4: TCNT4,
    pub icr4: ICR4,
    pub ocr4a: OCR4A,
    pub ocr4b: OCR4B,
    pub ocr4c: OCR4C,
    // some fields omitted
}

Register block

Fields

tifr4: TIFR4

0x00 - Timer/Counter4 Interrupt Flag register

timsk4: TIMSK4

0x39 - Timer/Counter4 Interrupt Mask Register

tccr4a: TCCR4A

0x67 - Timer/Counter4 Control Register A

tccr4b: TCCR4B

0x68 - Timer/Counter4 Control Register B

tccr4c: TCCR4C

0x69 - Timer/Counter 4 Control Register C

tcnt4: TCNT4

0x6b - Timer/Counter4 Bytes

icr4: ICR4

0x6d - Timer/Counter4 Input Capture Register Bytes

ocr4a: OCR4A

0x6f - Timer/Counter4 Output Compare Register A Bytes

ocr4b: OCR4B

0x71 - Timer/Counter4 Output Compare Register B Bytes

ocr4c: OCR4C

0x73 - Timer/Counter4 Output Compare Register B Bytes

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.