Trait ruduino::Register[][src]

pub trait Register: Sized {
    type T: RegisterValue;
    type RegisterBits = RegisterBits<Self>;

    const ADDRESS: *mut Self::T;
    fn write<V>(value: V)
    where
        V: Into<Self::T>
, { ... }
fn read() -> Self::T { ... }
fn set(bits: RegisterBits<Self>) { ... }
fn set_mask_raw(mask: Self::T) { ... }
fn unset(bits: RegisterBits<Self>) { ... }
fn unset_mask_raw(mask: Self::T) { ... }
fn toggle(mask: RegisterBits<Self>) { ... }
fn toggle_raw(mask: Self::T) { ... }
fn is_set(bits: RegisterBits<Self>) -> bool { ... }
fn is_mask_set_raw(mask: Self::T) -> bool { ... }
fn is_clear(mask: RegisterBits<Self>) -> bool { ... }
fn is_clear_raw(mask: Self::T) -> bool { ... }
fn wait_until_set(bits: RegisterBits<Self>) { ... }
fn wait_until_mask_set_raw(mask: Self::T) { ... } }

A register.

Associated Types

type T: RegisterValue[src]

The type that can represent the value of the register.

type RegisterBits = RegisterBits<Self>[src]

The type representing a set of bits that may be manipulated within the register.

Loading content...

Associated Constants

const ADDRESS: *mut Self::T[src]

The address of the register.

Loading content...

Provided methods

fn write<V>(value: V) where
    V: Into<Self::T>, 
[src]

Writes a value to the register.

fn read() -> Self::T[src]

Reads the value of the register.

fn set(bits: RegisterBits<Self>)[src]

Sets a set of bits to 1 in the register.

fn set_mask_raw(mask: Self::T)[src]

Sets a bitmask in a register.

This is equivalent to r |= mask.

fn unset(bits: RegisterBits<Self>)[src]

Unsets a set of bits in the register.

All of the bits will be set to 0.

fn unset_mask_raw(mask: Self::T)[src]

Clears a bitmask from a register.

This is equivalent to r &= !mask.

fn toggle(mask: RegisterBits<Self>)[src]

Toggles a set of bits within the register.

All specified bits which were previously 0 will become 1, and all specified bits that were previous 1 will become 0.

fn toggle_raw(mask: Self::T)[src]

Toggles a mask in the register.

This is equivalent to r ^= mask.

fn is_set(bits: RegisterBits<Self>) -> bool[src]

Checks if a set of bits are enabled.

All specifed bits must be set for this function to return true.

fn is_mask_set_raw(mask: Self::T) -> bool[src]

Checks if a mask is set in the register.

This is equivalent to (r & mask) == mask.

fn is_clear(mask: RegisterBits<Self>) -> bool[src]

Checks if a set of bits are not set.

All specified bits must be 0 for this function to return true.

fn is_clear_raw(mask: Self::T) -> bool[src]

Checks if a mask is clear in the register.

This is equivalent to (r & mask) == 0.

fn wait_until_set(bits: RegisterBits<Self>)[src]

Waits until a set of bits are set in the register.

This function will block until all bits that are set in the mask are also set in the register.

fn wait_until_mask_set_raw(mask: Self::T)[src]

Waits until a bit mask is set in the register.

This function will block until all bits that are set in the mask are also set in the register.

Loading content...

Implementors

impl Register for ruduino::cores::atmega48::ACSR[src]

type T = u8

impl Register for ruduino::cores::atmega48::ADC[src]

type T = u16

impl Register for ruduino::cores::atmega48::ADCSRA[src]

type T = u8

impl Register for ruduino::cores::atmega48::ADCSRB[src]

type T = u8

impl Register for ruduino::cores::atmega48::ADMUX[src]

type T = u8

impl Register for ruduino::cores::atmega48::ASSR[src]

type T = u8

impl Register for ruduino::cores::atmega48::CLKPR[src]

type T = u8

impl Register for ruduino::cores::atmega48::DDRB[src]

type T = u8

impl Register for ruduino::cores::atmega48::DDRC[src]

type T = u8

impl Register for ruduino::cores::atmega48::DDRD[src]

type T = u8

impl Register for ruduino::cores::atmega48::DIDR0[src]

type T = u8

impl Register for ruduino::cores::atmega48::DIDR1[src]

type T = u8

impl Register for ruduino::cores::atmega48::EEARL[src]

type T = u8

impl Register for ruduino::cores::atmega48::EECR[src]

type T = u8

impl Register for ruduino::cores::atmega48::EEDR[src]

type T = u8

impl Register for ruduino::cores::atmega48::EICRA[src]

type T = u8

impl Register for ruduino::cores::atmega48::EIFR[src]

type T = u8

impl Register for ruduino::cores::atmega48::EIMSK[src]

type T = u8

impl Register for ruduino::cores::atmega48::EXTENDED[src]

type T = u8

impl Register for ruduino::cores::atmega48::GPIOR0[src]

type T = u8

impl Register for ruduino::cores::atmega48::GPIOR1[src]

type T = u8

impl Register for ruduino::cores::atmega48::GPIOR2[src]

type T = u8

impl Register for ruduino::cores::atmega48::HIGH[src]

type T = u8

impl Register for ruduino::cores::atmega48::ICR1[src]

type T = u16

impl Register for ruduino::cores::atmega48::LOCKBIT[src]

type T = u8

impl Register for ruduino::cores::atmega48::LOW[src]

type T = u8

impl Register for ruduino::cores::atmega48::MCUCR[src]

type T = u8

impl Register for ruduino::cores::atmega48::MCUSR[src]

type T = u8

impl Register for ruduino::cores::atmega48::OCR0A[src]

type T = u8

impl Register for ruduino::cores::atmega48::OCR0B[src]

type T = u8

impl Register for ruduino::cores::atmega48::OCR1A[src]

type T = u16

impl Register for ruduino::cores::atmega48::OCR1B[src]

type T = u16

impl Register for ruduino::cores::atmega48::OCR2A[src]

type T = u8

impl Register for ruduino::cores::atmega48::OCR2B[src]

type T = u8

impl Register for ruduino::cores::atmega48::OSCCAL[src]

type T = u8

impl Register for ruduino::cores::atmega48::PCICR[src]

type T = u8

impl Register for ruduino::cores::atmega48::PCIFR[src]

type T = u8

impl Register for ruduino::cores::atmega48::PCMSK0[src]

type T = u8

impl Register for ruduino::cores::atmega48::PCMSK1[src]

type T = u8

impl Register for ruduino::cores::atmega48::PCMSK2[src]

type T = u8

impl Register for ruduino::cores::atmega48::PINB[src]

type T = u8

impl Register for ruduino::cores::atmega48::PINC[src]

type T = u8

impl Register for ruduino::cores::atmega48::PIND[src]

type T = u8

impl Register for ruduino::cores::atmega48::PORTB[src]

type T = u8

impl Register for ruduino::cores::atmega48::PORTC[src]

type T = u8

impl Register for ruduino::cores::atmega48::PORTD[src]

type T = u8

impl Register for ruduino::cores::atmega48::PRR[src]

type T = u8

impl Register for ruduino::cores::atmega48::SMCR[src]

type T = u8

impl Register for ruduino::cores::atmega48::SP[src]

type T = u16

impl Register for ruduino::cores::atmega48::SPCR[src]

type T = u8

impl Register for ruduino::cores::atmega48::SPDR[src]

type T = u8

impl Register for ruduino::cores::atmega48::SPMCSR[src]

type T = u8

impl Register for ruduino::cores::atmega48::SPSR[src]

type T = u8

impl Register for ruduino::cores::atmega48::SREG[src]

type T = u8

impl Register for ruduino::cores::atmega48::TCCR0A[src]

type T = u8

impl Register for ruduino::cores::atmega48::TCCR0B[src]

type T = u8

impl Register for ruduino::cores::atmega48::TCCR1A[src]

type T = u8

impl Register for ruduino::cores::atmega48::TCCR1B[src]

type T = u8

impl Register for ruduino::cores::atmega48::TCCR1C[src]

type T = u8

impl Register for ruduino::cores::atmega48::TCCR2A[src]

type T = u8

impl Register for ruduino::cores::atmega48::TCCR2B[src]

type T = u8

impl Register for ruduino::cores::atmega48::TCNT0[src]

type T = u8

impl Register for ruduino::cores::atmega48::TCNT1[src]

type T = u16

impl Register for ruduino::cores::atmega48::TCNT2[src]

type T = u8

impl Register for ruduino::cores::atmega48::TIFR0[src]

type T = u8

impl Register for ruduino::cores::atmega48::TIFR1[src]

type T = u8

impl Register for ruduino::cores::atmega48::TIFR2[src]

type T = u8

impl Register for ruduino::cores::atmega48::TIMSK0[src]

type T = u8

impl Register for ruduino::cores::atmega48::TIMSK1[src]

type T = u8

impl Register for ruduino::cores::atmega48::TIMSK2[src]

type T = u8

impl Register for ruduino::cores::atmega48::TWAMR[src]

type T = u8

impl Register for ruduino::cores::atmega48::TWAR[src]

type T = u8

impl Register for ruduino::cores::atmega48::TWBR[src]

type T = u8

impl Register for ruduino::cores::atmega48::TWCR[src]

type T = u8

impl Register for ruduino::cores::atmega48::TWDR[src]

type T = u8

impl Register for ruduino::cores::atmega48::TWSR[src]

type T = u8

impl Register for ruduino::cores::atmega48::UBRR0[src]

type T = u16

impl Register for ruduino::cores::atmega48::UCSR0A[src]

type T = u8

impl Register for ruduino::cores::atmega48::UCSR0B[src]

type T = u8

impl Register for ruduino::cores::atmega48::UCSR0C[src]

type T = u8

impl Register for ruduino::cores::atmega48::UDR0[src]

type T = u8

impl Register for ruduino::cores::atmega48::WDTCSR[src]

type T = u8

impl Register for ruduino::cores::atmega48a::ACSR[src]

type T = u8

impl Register for ruduino::cores::atmega48a::ADC[src]

type T = u16

impl Register for ruduino::cores::atmega48a::ADCSRA[src]

type T = u8

impl Register for ruduino::cores::atmega48a::ADCSRB[src]

type T = u8

impl Register for ruduino::cores::atmega48a::ADMUX[src]

type T = u8

impl Register for ruduino::cores::atmega48a::ASSR[src]

type T = u8

impl Register for ruduino::cores::atmega48a::CLKPR[src]

type T = u8

impl Register for ruduino::cores::atmega48a::DDRB[src]

type T = u8

impl Register for ruduino::cores::atmega48a::DDRC[src]

type T = u8

impl Register for ruduino::cores::atmega48a::DDRD[src]

type T = u8

impl Register for ruduino::cores::atmega48a::DIDR0[src]

type T = u8

impl Register for ruduino::cores::atmega48a::DIDR1[src]

type T = u8

impl Register for ruduino::cores::atmega48a::EEARH[src]

type T = u8

impl Register for ruduino::cores::atmega48a::EEARL[src]

type T = u8

impl Register for ruduino::cores::atmega48a::EECR[src]

type T = u8

impl Register for ruduino::cores::atmega48a::EEDR[src]

type T = u8

impl Register for ruduino::cores::atmega48a::EICRA[src]

type T = u8

impl Register for ruduino::cores::atmega48a::EIFR[src]

type T = u8

impl Register for ruduino::cores::atmega48a::EIMSK[src]

type T = u8

impl Register for ruduino::cores::atmega48a::EXTENDED[src]

type T = u8

impl Register for ruduino::cores::atmega48a::GPIOR0[src]

type T = u8

impl Register for ruduino::cores::atmega48a::GPIOR1[src]

type T = u8

impl Register for ruduino::cores::atmega48a::GPIOR2[src]

type T = u8

impl Register for ruduino::cores::atmega48a::HIGH[src]

type T = u8

impl Register for ruduino::cores::atmega48a::ICR1[src]

type T = u16

impl Register for ruduino::cores::atmega48a::LOCKBIT[src]

type T = u8

impl Register for ruduino::cores::atmega48a::LOW[src]

type T = u8

impl Register for ruduino::cores::atmega48a::MCUCR[src]

type T = u8

impl Register for ruduino::cores::atmega48a::MCUSR[src]

type T = u8

impl Register for ruduino::cores::atmega48a::OCR0A[src]

type T = u8

impl Register for ruduino::cores::atmega48a::OCR0B[src]

type T = u8

impl Register for ruduino::cores::atmega48a::OCR1A[src]

type T = u16

impl Register for ruduino::cores::atmega48a::OCR1B[src]

type T = u16

impl Register for ruduino::cores::atmega48a::OCR2A[src]

type T = u8

impl Register for ruduino::cores::atmega48a::OCR2B[src]

type T = u8

impl Register for ruduino::cores::atmega48a::OSCCAL[src]

type T = u8

impl Register for ruduino::cores::atmega48a::PCICR[src]

type T = u8

impl Register for ruduino::cores::atmega48a::PCIFR[src]

type T = u8

impl Register for ruduino::cores::atmega48a::PCMSK0[src]

type T = u8

impl Register for ruduino::cores::atmega48a::PCMSK1[src]

type T = u8

impl Register for ruduino::cores::atmega48a::PCMSK2[src]

type T = u8

impl Register for ruduino::cores::atmega48a::PINB[src]

type T = u8

impl Register for ruduino::cores::atmega48a::PINC[src]

type T = u8

impl Register for ruduino::cores::atmega48a::PIND[src]

type T = u8

impl Register for ruduino::cores::atmega48a::PORTB[src]

type T = u8

impl Register for ruduino::cores::atmega48a::PORTC[src]

type T = u8

impl Register for ruduino::cores::atmega48a::PORTD[src]

type T = u8

impl Register for ruduino::cores::atmega48a::PRR[src]

type T = u8

impl Register for ruduino::cores::atmega48a::SMCR[src]

type T = u8

impl Register for ruduino::cores::atmega48a::SP[src]

type T = u16

impl Register for ruduino::cores::atmega48a::SPCR[src]

type T = u8

impl Register for ruduino::cores::atmega48a::SPDR[src]

type T = u8

impl Register for ruduino::cores::atmega48a::SPMCSR[src]

type T = u8

impl Register for ruduino::cores::atmega48a::SPSR[src]

type T = u8

impl Register for ruduino::cores::atmega48a::SREG[src]

type T = u8

impl Register for ruduino::cores::atmega48a::TCCR0A[src]

type T = u8

impl Register for ruduino::cores::atmega48a::TCCR0B[src]

type T = u8

impl Register for ruduino::cores::atmega48a::TCCR1A[src]

type T = u8

impl Register for ruduino::cores::atmega48a::TCCR1B[src]

type T = u8

impl Register for ruduino::cores::atmega48a::TCCR1C[src]

type T = u8

impl Register for ruduino::cores::atmega48a::TCCR2A[src]

type T = u8

impl Register for ruduino::cores::atmega48a::TCCR2B[src]

type T = u8

impl Register for ruduino::cores::atmega48a::TCNT0[src]

type T = u8

impl Register for ruduino::cores::atmega48a::TCNT1[src]

type T = u16

impl Register for ruduino::cores::atmega48a::TCNT2[src]

type T = u8

impl Register for ruduino::cores::atmega48a::TIFR0[src]

type T = u8

impl Register for ruduino::cores::atmega48a::TIFR1[src]

type T = u8

impl Register for ruduino::cores::atmega48a::TIFR2[src]

type T = u8

impl Register for ruduino::cores::atmega48a::TIMSK0[src]

type T = u8

impl Register for ruduino::cores::atmega48a::TIMSK1[src]

type T = u8

impl Register for ruduino::cores::atmega48a::TIMSK2[src]

type T = u8

impl Register for ruduino::cores::atmega48a::TWAMR[src]

type T = u8

impl Register for ruduino::cores::atmega48a::TWAR[src]

type T = u8

impl Register for ruduino::cores::atmega48a::TWBR[src]

type T = u8

impl Register for ruduino::cores::atmega48a::TWCR[src]

type T = u8

impl Register for ruduino::cores::atmega48a::TWDR[src]

type T = u8

impl Register for ruduino::cores::atmega48a::TWSR[src]

type T = u8

impl Register for ruduino::cores::atmega48a::UBRR0[src]

type T = u16

impl Register for ruduino::cores::atmega48a::UCSR0A[src]

type T = u8

impl Register for ruduino::cores::atmega48a::UCSR0B[src]

type T = u8

impl Register for ruduino::cores::atmega48a::UCSR0C[src]

type T = u8

impl Register for ruduino::cores::atmega48a::UDR0[src]

type T = u8

impl Register for ruduino::cores::atmega48a::WDTCSR[src]

type T = u8

impl Register for ruduino::cores::atmega48p::ACSR[src]

type T = u8

impl Register for ruduino::cores::atmega48p::ADC[src]

type T = u16

impl Register for ruduino::cores::atmega48p::ADCSRA[src]

type T = u8

impl Register for ruduino::cores::atmega48p::ADCSRB[src]

type T = u8

impl Register for ruduino::cores::atmega48p::ADMUX[src]

type T = u8

impl Register for ruduino::cores::atmega48p::ASSR[src]

type T = u8

impl Register for ruduino::cores::atmega48p::CLKPR[src]

type T = u8

impl Register for ruduino::cores::atmega48p::DDRB[src]

type T = u8

impl Register for ruduino::cores::atmega48p::DDRC[src]

type T = u8

impl Register for ruduino::cores::atmega48p::DDRD[src]

type T = u8

impl Register for ruduino::cores::atmega48p::DIDR0[src]

type T = u8

impl Register for ruduino::cores::atmega48p::DIDR1[src]

type T = u8

impl Register for ruduino::cores::atmega48p::EEARL[src]

type T = u8

impl Register for ruduino::cores::atmega48p::EECR[src]

type T = u8

impl Register for ruduino::cores::atmega48p::EEDR[src]

type T = u8

impl Register for ruduino::cores::atmega48p::EICRA[src]

type T = u8

impl Register for ruduino::cores::atmega48p::EIFR[src]

type T = u8

impl Register for ruduino::cores::atmega48p::EIMSK[src]

type T = u8

impl Register for ruduino::cores::atmega48p::EXTENDED[src]

type T = u8

impl Register for ruduino::cores::atmega48p::GPIOR0[src]

type T = u8

impl Register for ruduino::cores::atmega48p::GPIOR1[src]

type T = u8

impl Register for ruduino::cores::atmega48p::GPIOR2[src]

type T = u8

impl Register for ruduino::cores::atmega48p::HIGH[src]

type T = u8

impl Register for ruduino::cores::atmega48p::ICR1[src]

type T = u16

impl Register for ruduino::cores::atmega48p::LOCKBIT[src]

type T = u8

impl Register for ruduino::cores::atmega48p::LOW[src]

type T = u8

impl Register for ruduino::cores::atmega48p::MCUCR[src]

type T = u8

impl Register for ruduino::cores::atmega48p::MCUSR[src]

type T = u8

impl Register for ruduino::cores::atmega48p::OCR0A[src]

type T = u8

impl Register for ruduino::cores::atmega48p::OCR0B[src]

type T = u8

impl Register for ruduino::cores::atmega48p::OCR1A[src]

type T = u16

impl Register for ruduino::cores::atmega48p::OCR1B[src]

type T = u16

impl Register for ruduino::cores::atmega48p::OCR2A[src]

type T = u8

impl Register for ruduino::cores::atmega48p::OCR2B[src]

type T = u8

impl Register for ruduino::cores::atmega48p::OSCCAL[src]

type T = u8

impl Register for ruduino::cores::atmega48p::PCICR[src]

type T = u8

impl Register for ruduino::cores::atmega48p::PCIFR[src]

type T = u8

impl Register for ruduino::cores::atmega48p::PCMSK0[src]

type T = u8

impl Register for ruduino::cores::atmega48p::PCMSK1[src]

type T = u8

impl Register for ruduino::cores::atmega48p::PCMSK2[src]

type T = u8

impl Register for ruduino::cores::atmega48p::PINB[src]

type T = u8

impl Register for ruduino::cores::atmega48p::PINC[src]

type T = u8

impl Register for ruduino::cores::atmega48p::PIND[src]

type T = u8

impl Register for ruduino::cores::atmega48p::PORTB[src]

type T = u8

impl Register for ruduino::cores::atmega48p::PORTC[src]

type T = u8

impl Register for ruduino::cores::atmega48p::PORTD[src]

type T = u8

impl Register for ruduino::cores::atmega48p::PRR[src]

type T = u8

impl Register for ruduino::cores::atmega48p::SMCR[src]

type T = u8

impl Register for ruduino::cores::atmega48p::SP[src]

type T = u16

impl Register for ruduino::cores::atmega48p::SPCR[src]

type T = u8

impl Register for ruduino::cores::atmega48p::SPDR[src]

type T = u8

impl Register for ruduino::cores::atmega48p::SPMCSR[src]

type T = u8

impl Register for ruduino::cores::atmega48p::SPSR[src]

type T = u8

impl Register for ruduino::cores::atmega48p::SREG[src]

type T = u8

impl Register for ruduino::cores::atmega48p::TCCR0A[src]

type T = u8

impl Register for ruduino::cores::atmega48p::TCCR0B[src]

type T = u8

impl Register for ruduino::cores::atmega48p::TCCR1A[src]

type T = u8

impl Register for ruduino::cores::atmega48p::TCCR1B[src]

type T = u8

impl Register for ruduino::cores::atmega48p::TCCR1C[src]

type T = u8

impl Register for ruduino::cores::atmega48p::TCCR2A[src]

type T = u8

impl Register for ruduino::cores::atmega48p::TCCR2B[src]

type T = u8

impl Register for ruduino::cores::atmega48p::TCNT0[src]

type T = u8

impl Register for ruduino::cores::atmega48p::TCNT1[src]

type T = u16

impl Register for ruduino::cores::atmega48p::TCNT2[src]

type T = u8

impl Register for ruduino::cores::atmega48p::TIFR0[src]

type T = u8

impl Register for ruduino::cores::atmega48p::TIFR1[src]

type T = u8

impl Register for ruduino::cores::atmega48p::TIFR2[src]

type T = u8

impl Register for ruduino::cores::atmega48p::TIMSK0[src]

type T = u8

impl Register for ruduino::cores::atmega48p::TIMSK1[src]

type T = u8

impl Register for ruduino::cores::atmega48p::TIMSK2[src]

type T = u8

impl Register for ruduino::cores::atmega48p::TWAMR[src]

type T = u8

impl Register for ruduino::cores::atmega48p::TWAR[src]

type T = u8

impl Register for ruduino::cores::atmega48p::TWBR[src]

type T = u8

impl Register for ruduino::cores::atmega48p::TWCR[src]

type T = u8

impl Register for ruduino::cores::atmega48p::TWDR[src]

type T = u8

impl Register for ruduino::cores::atmega48p::TWSR[src]

type T = u8

impl Register for ruduino::cores::atmega48p::UBRR0[src]

type T = u16

impl Register for ruduino::cores::atmega48p::UCSR0A[src]

type T = u8

impl Register for ruduino::cores::atmega48p::UCSR0B[src]

type T = u8

impl Register for ruduino::cores::atmega48p::UCSR0C[src]

type T = u8

impl Register for ruduino::cores::atmega48p::UDR0[src]

type T = u8

impl Register for ruduino::cores::atmega48p::WDTCSR[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::ACSR[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::ADC[src]

type T = u16

impl Register for ruduino::cores::atmega48pa::ADCSRA[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::ADCSRB[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::ADMUX[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::ASSR[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::CLKPR[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::DDRB[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::DDRC[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::DDRD[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::DIDR0[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::DIDR1[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::EEARH[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::EEARL[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::EECR[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::EEDR[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::EICRA[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::EIFR[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::EIMSK[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::EXTENDED[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::GPIOR0[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::GPIOR1[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::GPIOR2[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::HIGH[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::ICR1[src]

type T = u16

impl Register for ruduino::cores::atmega48pa::LOCKBIT[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::LOW[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::MCUCR[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::MCUSR[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::OCR0A[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::OCR0B[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::OCR1A[src]

type T = u16

impl Register for ruduino::cores::atmega48pa::OCR1B[src]

type T = u16

impl Register for ruduino::cores::atmega48pa::OCR2A[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::OCR2B[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::OSCCAL[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::PCICR[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::PCIFR[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::PCMSK0[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::PCMSK1[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::PCMSK2[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::PINB[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::PINC[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::PIND[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::PORTB[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::PORTC[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::PORTD[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::PRR[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::SMCR[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::SP[src]

type T = u16

impl Register for ruduino::cores::atmega48pa::SPCR[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::SPDR[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::SPMCSR[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::SPSR[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::SREG[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::TCCR0A[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::TCCR0B[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::TCCR1A[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::TCCR1B[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::TCCR1C[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::TCCR2A[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::TCCR2B[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::TCNT0[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::TCNT1[src]

type T = u16

impl Register for ruduino::cores::atmega48pa::TCNT2[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::TIFR0[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::TIFR1[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::TIFR2[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::TIMSK0[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::TIMSK1[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::TIMSK2[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::TWAMR[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::TWAR[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::TWBR[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::TWCR[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::TWDR[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::TWSR[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::UBRR0[src]

type T = u16

impl Register for ruduino::cores::atmega48pa::UCSR0A[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::UCSR0B[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::UCSR0C[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::UDR0[src]

type T = u8

impl Register for ruduino::cores::atmega48pa::WDTCSR[src]

type T = u8

impl Register for ruduino::cores::atmega88::ACSR[src]

type T = u8

impl Register for ruduino::cores::atmega88::ADC[src]

type T = u16

impl Register for ruduino::cores::atmega88::ADCSRA[src]

type T = u8

impl Register for ruduino::cores::atmega88::ADCSRB[src]

type T = u8

impl Register for ruduino::cores::atmega88::ADMUX[src]

type T = u8

impl Register for ruduino::cores::atmega88::ASSR[src]

type T = u8

impl Register for ruduino::cores::atmega88::CLKPR[src]

type T = u8

impl Register for ruduino::cores::atmega88::DDRB[src]

type T = u8

impl Register for ruduino::cores::atmega88::DDRC[src]

type T = u8

impl Register for ruduino::cores::atmega88::DDRD[src]

type T = u8

impl Register for ruduino::cores::atmega88::DIDR0[src]

type T = u8

impl Register for ruduino::cores::atmega88::DIDR1[src]

type T = u8

impl Register for ruduino::cores::atmega88::EEAR[src]

type T = u16

impl Register for ruduino::cores::atmega88::EECR[src]

type T = u8

impl Register for ruduino::cores::atmega88::EEDR[src]

type T = u8

impl Register for ruduino::cores::atmega88::EICRA[src]

type T = u8

impl Register for ruduino::cores::atmega88::EIFR[src]

type T = u8

impl Register for ruduino::cores::atmega88::EIMSK[src]

type T = u8

impl Register for ruduino::cores::atmega88::EXTENDED[src]

type T = u8

impl Register for ruduino::cores::atmega88::GPIOR0[src]

type T = u8

impl Register for ruduino::cores::atmega88::GPIOR1[src]

type T = u8

impl Register for ruduino::cores::atmega88::GPIOR2[src]

type T = u8

impl Register for ruduino::cores::atmega88::HIGH[src]

type T = u8

impl Register for ruduino::cores::atmega88::ICR1[src]

type T = u16

impl Register for ruduino::cores::atmega88::LOCKBIT[src]

type T = u8

impl Register for ruduino::cores::atmega88::LOW[src]

type T = u8

impl Register for ruduino::cores::atmega88::MCUCR[src]

type T = u8

impl Register for ruduino::cores::atmega88::MCUSR[src]

type T = u8

impl Register for ruduino::cores::atmega88::OCR0A[src]

type T = u8

impl Register for ruduino::cores::atmega88::OCR0B[src]

type T = u8

impl Register for ruduino::cores::atmega88::OCR1A[src]

type T = u16

impl Register for ruduino::cores::atmega88::OCR1B[src]

type T = u16

impl Register for ruduino::cores::atmega88::OCR2A[src]

type T = u8

impl Register for ruduino::cores::atmega88::OCR2B[src]

type T = u8

impl Register for ruduino::cores::atmega88::OSCCAL[src]

type T = u8

impl Register for ruduino::cores::atmega88::PCICR[src]

type T = u8

impl Register for ruduino::cores::atmega88::PCIFR[src]

type T = u8

impl Register for ruduino::cores::atmega88::PCMSK0[src]

type T = u8

impl Register for ruduino::cores::atmega88::PCMSK1[src]

type T = u8

impl Register for ruduino::cores::atmega88::PCMSK2[src]

type T = u8

impl Register for ruduino::cores::atmega88::PINB[src]

type T = u8

impl Register for ruduino::cores::atmega88::PINC[src]

type T = u8

impl Register for ruduino::cores::atmega88::PIND[src]

type T = u8

impl Register for ruduino::cores::atmega88::PORTB[src]

type T = u8

impl Register for ruduino::cores::atmega88::PORTC[src]

type T = u8

impl Register for ruduino::cores::atmega88::PORTD[src]

type T = u8

impl Register for ruduino::cores::atmega88::PRR[src]

type T = u8

impl Register for ruduino::cores::atmega88::SMCR[src]

type T = u8

impl Register for ruduino::cores::atmega88::SP[src]

type T = u16

impl Register for ruduino::cores::atmega88::SPCR[src]

type T = u8

impl Register for ruduino::cores::atmega88::SPDR[src]

type T = u8

impl Register for ruduino::cores::atmega88::SPMCSR[src]

type T = u8

impl Register for ruduino::cores::atmega88::SPSR[src]

type T = u8

impl Register for ruduino::cores::atmega88::SREG[src]

type T = u8

impl Register for ruduino::cores::atmega88::TCCR0A[src]

type T = u8

impl Register for ruduino::cores::atmega88::TCCR0B[src]

type T = u8

impl Register for ruduino::cores::atmega88::TCCR1A[src]

type T = u8

impl Register for ruduino::cores::atmega88::TCCR1B[src]

type T = u8

impl Register for ruduino::cores::atmega88::TCCR1C[src]

type T = u8

impl Register for ruduino::cores::atmega88::TCCR2A[src]

type T = u8

impl Register for ruduino::cores::atmega88::TCCR2B[src]

type T = u8

impl Register for ruduino::cores::atmega88::TCNT0[src]

type T = u8

impl Register for ruduino::cores::atmega88::TCNT1[src]

type T = u16

impl Register for ruduino::cores::atmega88::TCNT2[src]

type T = u8

impl Register for ruduino::cores::atmega88::TIFR0[src]

type T = u8

impl Register for ruduino::cores::atmega88::TIFR1[src]

type T = u8

impl Register for ruduino::cores::atmega88::TIFR2[src]

type T = u8

impl Register for ruduino::cores::atmega88::TIMSK0[src]

type T = u8

impl Register for ruduino::cores::atmega88::TIMSK1[src]

type T = u8

impl Register for ruduino::cores::atmega88::TIMSK2[src]

type T = u8

impl Register for ruduino::cores::atmega88::TWAMR[src]

type T = u8

impl Register for ruduino::cores::atmega88::TWAR[src]

type T = u8

impl Register for ruduino::cores::atmega88::TWBR[src]

type T = u8

impl Register for ruduino::cores::atmega88::TWCR[src]

type T = u8

impl Register for ruduino::cores::atmega88::TWDR[src]

type T = u8

impl Register for ruduino::cores::atmega88::TWSR[src]

type T = u8

impl Register for ruduino::cores::atmega88::UBRR0[src]

type T = u16

impl Register for ruduino::cores::atmega88::UCSR0A[src]

type T = u8

impl Register for ruduino::cores::atmega88::UCSR0B[src]

type T = u8

impl Register for ruduino::cores::atmega88::UCSR0C[src]

type T = u8

impl Register for ruduino::cores::atmega88::UDR0[src]

type T = u8

impl Register for ruduino::cores::atmega88::WDTCSR[src]

type T = u8

impl Register for ruduino::cores::atmega88a::ACSR[src]

type T = u8

impl Register for ruduino::cores::atmega88a::ADC[src]

type T = u16

impl Register for ruduino::cores::atmega88a::ADCSRA[src]

type T = u8

impl Register for ruduino::cores::atmega88a::ADCSRB[src]

type T = u8

impl Register for ruduino::cores::atmega88a::ADMUX[src]

type T = u8

impl Register for ruduino::cores::atmega88a::ASSR[src]

type T = u8

impl Register for ruduino::cores::atmega88a::CLKPR[src]

type T = u8

impl Register for ruduino::cores::atmega88a::DDRB[src]

type T = u8

impl Register for ruduino::cores::atmega88a::DDRC[src]

type T = u8

impl Register for ruduino::cores::atmega88a::DDRD[src]

type T = u8

impl Register for ruduino::cores::atmega88a::DIDR0[src]

type T = u8

impl Register for ruduino::cores::atmega88a::DIDR1[src]

type T = u8

impl Register for ruduino::cores::atmega88a::EEAR[src]

type T = u16

impl Register for ruduino::cores::atmega88a::EECR[src]

type T = u8

impl Register for ruduino::cores::atmega88a::EEDR[src]

type T = u8

impl Register for ruduino::cores::atmega88a::EICRA[src]

type T = u8

impl Register for ruduino::cores::atmega88a::EIFR[src]

type T = u8

impl Register for ruduino::cores::atmega88a::EIMSK[src]

type T = u8

impl Register for ruduino::cores::atmega88a::EXTENDED[src]

type T = u8

impl Register for ruduino::cores::atmega88a::GPIOR0[src]

type T = u8

impl Register for ruduino::cores::atmega88a::GPIOR1[src]

type T = u8

impl Register for ruduino::cores::atmega88a::GPIOR2[src]

type T = u8

impl Register for ruduino::cores::atmega88a::HIGH[src]

type T = u8

impl Register for ruduino::cores::atmega88a::ICR1[src]

type T = u16

impl Register for ruduino::cores::atmega88a::LOCKBIT[src]

type T = u8

impl Register for ruduino::cores::atmega88a::LOW[src]

type T = u8

impl Register for ruduino::cores::atmega88a::MCUCR[src]

type T = u8

impl Register for ruduino::cores::atmega88a::MCUSR[src]

type T = u8

impl Register for ruduino::cores::atmega88a::OCR0A[src]

type T = u8

impl Register for ruduino::cores::atmega88a::OCR0B[src]

type T = u8

impl Register for ruduino::cores::atmega88a::OCR1A[src]

type T = u16

impl Register for ruduino::cores::atmega88a::OCR1B[src]

type T = u16

impl Register for ruduino::cores::atmega88a::OCR2A[src]

type T = u8

impl Register for ruduino::cores::atmega88a::OCR2B[src]

type T = u8

impl Register for ruduino::cores::atmega88a::OSCCAL[src]

type T = u8

impl Register for ruduino::cores::atmega88a::PCICR[src]

type T = u8

impl Register for ruduino::cores::atmega88a::PCIFR[src]

type T = u8

impl Register for ruduino::cores::atmega88a::PCMSK0[src]

type T = u8

impl Register for ruduino::cores::atmega88a::PCMSK1[src]

type T = u8

impl Register for ruduino::cores::atmega88a::PCMSK2[src]

type T = u8

impl Register for ruduino::cores::atmega88a::PINB[src]

type T = u8

impl Register for ruduino::cores::atmega88a::PINC[src]

type T = u8

impl Register for ruduino::cores::atmega88a::PIND[src]

type T = u8

impl Register for ruduino::cores::atmega88a::PORTB[src]

type T = u8

impl Register for ruduino::cores::atmega88a::PORTC[src]

type T = u8

impl Register for ruduino::cores::atmega88a::PORTD[src]

type T = u8

impl Register for ruduino::cores::atmega88a::PRR[src]

type T = u8

impl Register for ruduino::cores::atmega88a::SMCR[src]

type T = u8

impl Register for ruduino::cores::atmega88a::SP[src]

type T = u16

impl Register for ruduino::cores::atmega88a::SPCR[src]

type T = u8

impl Register for ruduino::cores::atmega88a::SPDR[src]

type T = u8

impl Register for ruduino::cores::atmega88a::SPMCSR[src]

type T = u8

impl Register for ruduino::cores::atmega88a::SPSR[src]

type T = u8

impl Register for ruduino::cores::atmega88a::SREG[src]

type T = u8

impl Register for ruduino::cores::atmega88a::TCCR0A[src]

type T = u8

impl Register for ruduino::cores::atmega88a::TCCR0B[src]

type T = u8

impl Register for ruduino::cores::atmega88a::TCCR1A[src]

type T = u8

impl Register for ruduino::cores::atmega88a::TCCR1B[src]

type T = u8

impl Register for ruduino::cores::atmega88a::TCCR1C[src]

type T = u8

impl Register for ruduino::cores::atmega88a::TCCR2A[src]

type T = u8

impl Register for ruduino::cores::atmega88a::TCCR2B[src]

type T = u8

impl Register for ruduino::cores::atmega88a::TCNT0[src]

type T = u8

impl Register for ruduino::cores::atmega88a::TCNT1[src]

type T = u16

impl Register for ruduino::cores::atmega88a::TCNT2[src]

type T = u8

impl Register for ruduino::cores::atmega88a::TIFR0[src]

type T = u8

impl Register for ruduino::cores::atmega88a::TIFR1[src]

type T = u8

impl Register for ruduino::cores::atmega88a::TIFR2[src]

type T = u8

impl Register for ruduino::cores::atmega88a::TIMSK0[src]

type T = u8

impl Register for ruduino::cores::atmega88a::TIMSK1[src]

type T = u8

impl Register for ruduino::cores::atmega88a::TIMSK2[src]

type T = u8

impl Register for ruduino::cores::atmega88a::TWAMR[src]

type T = u8

impl Register for ruduino::cores::atmega88a::TWAR[src]

type T = u8

impl Register for ruduino::cores::atmega88a::TWBR[src]

type T = u8

impl Register for ruduino::cores::atmega88a::TWCR[src]

type T = u8

impl Register for ruduino::cores::atmega88a::TWDR[src]

type T = u8

impl Register for ruduino::cores::atmega88a::TWSR[src]

type T = u8

impl Register for ruduino::cores::atmega88a::UBRR0[src]

type T = u16

impl Register for ruduino::cores::atmega88a::UCSR0A[src]

type T = u8

impl Register for ruduino::cores::atmega88a::UCSR0B[src]

type T = u8

impl Register for ruduino::cores::atmega88a::UCSR0C[src]

type T = u8

impl Register for ruduino::cores::atmega88a::UDR0[src]

type T = u8

impl Register for ruduino::cores::atmega88a::WDTCSR[src]

type T = u8

impl Register for ruduino::cores::atmega88p::ACSR[src]

type T = u8

impl Register for ruduino::cores::atmega88p::ADC[src]

type T = u16

impl Register for ruduino::cores::atmega88p::ADCSRA[src]

type T = u8

impl Register for ruduino::cores::atmega88p::ADCSRB[src]

type T = u8

impl Register for ruduino::cores::atmega88p::ADMUX[src]

type T = u8

impl Register for ruduino::cores::atmega88p::ASSR[src]

type T = u8

impl Register for ruduino::cores::atmega88p::CLKPR[src]

type T = u8

impl Register for ruduino::cores::atmega88p::DDRB[src]

type T = u8

impl Register for ruduino::cores::atmega88p::DDRC[src]

type T = u8

impl Register for ruduino::cores::atmega88p::DDRD[src]

type T = u8

impl Register for ruduino::cores::atmega88p::DIDR0[src]

type T = u8

impl Register for ruduino::cores::atmega88p::DIDR1[src]

type T = u8

impl Register for ruduino::cores::atmega88p::EEAR[src]

type T = u16

impl Register for ruduino::cores::atmega88p::EECR[src]

type T = u8

impl Register for ruduino::cores::atmega88p::EEDR[src]

type T = u8

impl Register for ruduino::cores::atmega88p::EICRA[src]

type T = u8

impl Register for ruduino::cores::atmega88p::EIFR[src]

type T = u8

impl Register for ruduino::cores::atmega88p::EIMSK[src]

type T = u8

impl Register for ruduino::cores::atmega88p::EXTENDED[src]

type T = u8

impl Register for ruduino::cores::atmega88p::GPIOR0[src]

type T = u8

impl Register for ruduino::cores::atmega88p::GPIOR1[src]

type T = u8

impl Register for ruduino::cores::atmega88p::GPIOR2[src]

type T = u8

impl Register for ruduino::cores::atmega88p::HIGH[src]

type T = u8

impl Register for ruduino::cores::atmega88p::ICR1[src]

type T = u16

impl Register for ruduino::cores::atmega88p::LOCKBIT[src]

type T = u8

impl Register for ruduino::cores::atmega88p::LOW[src]

type T = u8

impl Register for ruduino::cores::atmega88p::MCUCR[src]

type T = u8

impl Register for ruduino::cores::atmega88p::MCUSR[src]

type T = u8

impl Register for ruduino::cores::atmega88p::OCR0A[src]

type T = u8

impl Register for ruduino::cores::atmega88p::OCR0B[src]

type T = u8

impl Register for ruduino::cores::atmega88p::OCR1A[src]

type T = u16

impl Register for ruduino::cores::atmega88p::OCR1B[src]

type T = u16

impl Register for ruduino::cores::atmega88p::OCR2A[src]

type T = u8

impl Register for ruduino::cores::atmega88p::OCR2B[src]

type T = u8

impl Register for ruduino::cores::atmega88p::OSCCAL[src]

type T = u8

impl Register for ruduino::cores::atmega88p::PCICR[src]

type T = u8

impl Register for ruduino::cores::atmega88p::PCIFR[src]

type T = u8

impl Register for ruduino::cores::atmega88p::PCMSK0[src]

type T = u8

impl Register for ruduino::cores::atmega88p::PCMSK1[src]

type T = u8

impl Register for ruduino::cores::atmega88p::PCMSK2[src]

type T = u8

impl Register for ruduino::cores::atmega88p::PINB[src]

type T = u8

impl Register for ruduino::cores::atmega88p::PINC[src]

type T = u8

impl Register for ruduino::cores::atmega88p::PIND[src]

type T = u8

impl Register for ruduino::cores::atmega88p::PORTB[src]

type T = u8

impl Register for ruduino::cores::atmega88p::PORTC[src]

type T = u8

impl Register for ruduino::cores::atmega88p::PORTD[src]

type T = u8

impl Register for ruduino::cores::atmega88p::PRR[src]

type T = u8

impl Register for ruduino::cores::atmega88p::SMCR[src]

type T = u8

impl Register for ruduino::cores::atmega88p::SP[src]

type T = u16

impl Register for ruduino::cores::atmega88p::SPCR[src]

type T = u8

impl Register for ruduino::cores::atmega88p::SPDR[src]

type T = u8

impl Register for ruduino::cores::atmega88p::SPMCSR[src]

type T = u8

impl Register for ruduino::cores::atmega88p::SPSR[src]

type T = u8

impl Register for ruduino::cores::atmega88p::SREG[src]

type T = u8

impl Register for ruduino::cores::atmega88p::TCCR0A[src]

type T = u8

impl Register for ruduino::cores::atmega88p::TCCR0B[src]

type T = u8

impl Register for ruduino::cores::atmega88p::TCCR1A[src]

type T = u8

impl Register for ruduino::cores::atmega88p::TCCR1B[src]

type T = u8

impl Register for ruduino::cores::atmega88p::TCCR1C[src]

type T = u8

impl Register for ruduino::cores::atmega88p::TCCR2A[src]

type T = u8

impl Register for ruduino::cores::atmega88p::TCCR2B[src]

type T = u8

impl Register for ruduino::cores::atmega88p::TCNT0[src]

type T = u8

impl Register for ruduino::cores::atmega88p::TCNT1[src]

type T = u16

impl Register for ruduino::cores::atmega88p::TCNT2[src]

type T = u8

impl Register for ruduino::cores::atmega88p::TIFR0[src]

type T = u8

impl Register for ruduino::cores::atmega88p::TIFR1[src]

type T = u8

impl Register for ruduino::cores::atmega88p::TIFR2[src]

type T = u8

impl Register for ruduino::cores::atmega88p::TIMSK0[src]

type T = u8

impl Register for ruduino::cores::atmega88p::TIMSK1[src]

type T = u8

impl Register for ruduino::cores::atmega88p::TIMSK2[src]

type T = u8

impl Register for ruduino::cores::atmega88p::TWAMR[src]

type T = u8

impl Register for ruduino::cores::atmega88p::TWAR[src]

type T = u8

impl Register for ruduino::cores::atmega88p::TWBR[src]

type T = u8

impl Register for ruduino::cores::atmega88p::TWCR[src]

type T = u8

impl Register for ruduino::cores::atmega88p::TWDR[src]

type T = u8

impl Register for ruduino::cores::atmega88p::TWSR[src]

type T = u8

impl Register for ruduino::cores::atmega88p::UBRR0[src]

type T = u16

impl Register for ruduino::cores::atmega88p::UCSR0A[src]

type T = u8

impl Register for ruduino::cores::atmega88p::UCSR0B[src]

type T = u8

impl Register for ruduino::cores::atmega88p::UCSR0C[src]

type T = u8

impl Register for ruduino::cores::atmega88p::UDR0[src]

type T = u8

impl Register for ruduino::cores::atmega88p::WDTCSR[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::ACSR[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::ADC[src]

type T = u16

impl Register for ruduino::cores::atmega88pa::ADCSRA[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::ADCSRB[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::ADMUX[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::ASSR[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::CLKPR[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::DDRB[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::DDRC[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::DDRD[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::DIDR0[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::DIDR1[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::EEAR[src]

type T = u16

impl Register for ruduino::cores::atmega88pa::EECR[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::EEDR[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::EICRA[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::EIFR[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::EIMSK[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::EXTENDED[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::GPIOR0[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::GPIOR1[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::GPIOR2[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::HIGH[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::ICR1[src]

type T = u16

impl Register for ruduino::cores::atmega88pa::LOCKBIT[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::LOW[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::MCUCR[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::MCUSR[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::OCR0A[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::OCR0B[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::OCR1A[src]

type T = u16

impl Register for ruduino::cores::atmega88pa::OCR1B[src]

type T = u16

impl Register for ruduino::cores::atmega88pa::OCR2A[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::OCR2B[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::OSCCAL[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::PCICR[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::PCIFR[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::PCMSK0[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::PCMSK1[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::PCMSK2[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::PINB[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::PINC[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::PIND[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::PORTB[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::PORTC[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::PORTD[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::PRR[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::SMCR[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::SP[src]

type T = u16

impl Register for ruduino::cores::atmega88pa::SPCR[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::SPDR[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::SPMCSR[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::SPSR[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::SREG[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::TCCR0A[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::TCCR0B[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::TCCR1A[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::TCCR1B[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::TCCR1C[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::TCCR2A[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::TCCR2B[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::TCNT0[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::TCNT1[src]

type T = u16

impl Register for ruduino::cores::atmega88pa::TCNT2[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::TIFR0[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::TIFR1[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::TIFR2[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::TIMSK0[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::TIMSK1[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::TIMSK2[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::TWAMR[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::TWAR[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::TWBR[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::TWCR[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::TWDR[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::TWSR[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::UBRR0[src]

type T = u16

impl Register for ruduino::cores::atmega88pa::UCSR0A[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::UCSR0B[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::UCSR0C[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::UDR0[src]

type T = u8

impl Register for ruduino::cores::atmega88pa::WDTCSR[src]

type T = u8

impl Register for ruduino::cores::atmega168::ACSR[src]

type T = u8

impl Register for ruduino::cores::atmega168::ADC[src]

type T = u16

impl Register for ruduino::cores::atmega168::ADCSRA[src]

type T = u8

impl Register for ruduino::cores::atmega168::ADCSRB[src]

type T = u8

impl Register for ruduino::cores::atmega168::ADMUX[src]

type T = u8

impl Register for ruduino::cores::atmega168::ASSR[src]

type T = u8

impl Register for ruduino::cores::atmega168::CLKPR[src]

type T = u8

impl Register for ruduino::cores::atmega168::DDRB[src]

type T = u8

impl Register for ruduino::cores::atmega168::DDRC[src]

type T = u8

impl Register for ruduino::cores::atmega168::DDRD[src]

type T = u8

impl Register for ruduino::cores::atmega168::DIDR0[src]

type T = u8

impl Register for ruduino::cores::atmega168::DIDR1[src]

type T = u8

impl Register for ruduino::cores::atmega168::EEAR[src]

type T = u16

impl Register for ruduino::cores::atmega168::EECR[src]

type T = u8

impl Register for ruduino::cores::atmega168::EEDR[src]

type T = u8

impl Register for ruduino::cores::atmega168::EICRA[src]

type T = u8

impl Register for ruduino::cores::atmega168::EIFR[src]

type T = u8

impl Register for ruduino::cores::atmega168::EIMSK[src]

type T = u8

impl Register for ruduino::cores::atmega168::EXTENDED[src]

type T = u8

impl Register for ruduino::cores::atmega168::GPIOR0[src]

type T = u8

impl Register for ruduino::cores::atmega168::GPIOR1[src]

type T = u8

impl Register for ruduino::cores::atmega168::GPIOR2[src]

type T = u8

impl Register for ruduino::cores::atmega168::HIGH[src]

type T = u8

impl Register for ruduino::cores::atmega168::ICR1[src]

type T = u16

impl Register for ruduino::cores::atmega168::LOCKBIT[src]

type T = u8

impl Register for ruduino::cores::atmega168::LOW[src]

type T = u8

impl Register for ruduino::cores::atmega168::MCUCR[src]

type T = u8

impl Register for ruduino::cores::atmega168::MCUSR[src]

type T = u8

impl Register for ruduino::cores::atmega168::OCR0A[src]

type T = u8

impl Register for ruduino::cores::atmega168::OCR0B[src]

type T = u8

impl Register for ruduino::cores::atmega168::OCR1A[src]

type T = u16

impl Register for ruduino::cores::atmega168::OCR1B[src]

type T = u16

impl Register for ruduino::cores::atmega168::OCR2A[src]

type T = u8

impl Register for ruduino::cores::atmega168::OCR2B[src]

type T = u8

impl Register for ruduino::cores::atmega168::OSCCAL[src]

type T = u8

impl Register for ruduino::cores::atmega168::PCICR[src]

type T = u8

impl Register for ruduino::cores::atmega168::PCIFR[src]

type T = u8

impl Register for ruduino::cores::atmega168::PCMSK0[src]

type T = u8

impl Register for ruduino::cores::atmega168::PCMSK1[src]

type T = u8

impl Register for ruduino::cores::atmega168::PCMSK2[src]

type T = u8

impl Register for ruduino::cores::atmega168::PINB[src]

type T = u8

impl Register for ruduino::cores::atmega168::PINC[src]

type T = u8

impl Register for ruduino::cores::atmega168::PIND[src]

type T = u8

impl Register for ruduino::cores::atmega168::PORTB[src]

type T = u8

impl Register for ruduino::cores::atmega168::PORTC[src]

type T = u8

impl Register for ruduino::cores::atmega168::PORTD[src]

type T = u8

impl Register for ruduino::cores::atmega168::PRR[src]

type T = u8

impl Register for ruduino::cores::atmega168::SMCR[src]

type T = u8

impl Register for ruduino::cores::atmega168::SP[src]

type T = u16

impl Register for ruduino::cores::atmega168::SPCR[src]

type T = u8

impl Register for ruduino::cores::atmega168::SPDR[src]

type T = u8

impl Register for ruduino::cores::atmega168::SPMCSR[src]

type T = u8

impl Register for ruduino::cores::atmega168::SPSR[src]

type T = u8

impl Register for ruduino::cores::atmega168::SREG[src]

type T = u8

impl Register for ruduino::cores::atmega168::TCCR0A[src]

type T = u8

impl Register for ruduino::cores::atmega168::TCCR0B[src]

type T = u8

impl Register for ruduino::cores::atmega168::TCCR1A[src]

type T = u8

impl Register for ruduino::cores::atmega168::TCCR1B[src]

type T = u8

impl Register for ruduino::cores::atmega168::TCCR1C[src]

type T = u8

impl Register for ruduino::cores::atmega168::TCCR2A[src]

type T = u8

impl Register for ruduino::cores::atmega168::TCCR2B[src]

type T = u8

impl Register for ruduino::cores::atmega168::TCNT0[src]

type T = u8

impl Register for ruduino::cores::atmega168::TCNT1[src]

type T = u16

impl Register for ruduino::cores::atmega168::TCNT2[src]

type T = u8

impl Register for ruduino::cores::atmega168::TIFR0[src]

type T = u8

impl Register for ruduino::cores::atmega168::TIFR1[src]

type T = u8

impl Register for ruduino::cores::atmega168::TIFR2[src]

type T = u8

impl Register for ruduino::cores::atmega168::TIMSK0[src]

type T = u8

impl Register for ruduino::cores::atmega168::TIMSK1[src]

type T = u8

impl Register for ruduino::cores::atmega168::TIMSK2[src]

type T = u8

impl Register for ruduino::cores::atmega168::TWAMR[src]

type T = u8

impl Register for ruduino::cores::atmega168::TWAR[src]

type T = u8

impl Register for ruduino::cores::atmega168::TWBR[src]

type T = u8

impl Register for ruduino::cores::atmega168::TWCR[src]

type T = u8

impl Register for ruduino::cores::atmega168::TWDR[src]

type T = u8

impl Register for ruduino::cores::atmega168::TWSR[src]

type T = u8

impl Register for ruduino::cores::atmega168::UBRR0[src]

type T = u16

impl Register for ruduino::cores::atmega168::UCSR0A[src]

type T = u8

impl Register for ruduino::cores::atmega168::UCSR0B[src]

type T = u8

impl Register for ruduino::cores::atmega168::UCSR0C[src]

type T = u8

impl Register for ruduino::cores::atmega168::UDR0[src]

type T = u8

impl Register for ruduino::cores::atmega168::WDTCSR[src]

type T = u8

impl Register for ruduino::cores::atmega168a::ACSR[src]

type T = u8

impl Register for ruduino::cores::atmega168a::ADC[src]

type T = u16

impl Register for ruduino::cores::atmega168a::ADCSRA[src]

type T = u8

impl Register for ruduino::cores::atmega168a::ADCSRB[src]

type T = u8

impl Register for ruduino::cores::atmega168a::ADMUX[src]

type T = u8

impl Register for ruduino::cores::atmega168a::ASSR[src]

type T = u8

impl Register for ruduino::cores::atmega168a::CLKPR[src]

type T = u8

impl Register for ruduino::cores::atmega168a::DDRB[src]

type T = u8

impl Register for ruduino::cores::atmega168a::DDRC[src]

type T = u8

impl Register for ruduino::cores::atmega168a::DDRD[src]

type T = u8

impl Register for ruduino::cores::atmega168a::DIDR0[src]

type T = u8

impl Register for ruduino::cores::atmega168a::DIDR1[src]

type T = u8

impl Register for ruduino::cores::atmega168a::EEAR[src]

type T = u16

impl Register for ruduino::cores::atmega168a::EECR[src]

type T = u8

impl Register for ruduino::cores::atmega168a::EEDR[src]

type T = u8

impl Register for ruduino::cores::atmega168a::EICRA[src]

type T = u8

impl Register for ruduino::cores::atmega168a::EIFR[src]

type T = u8

impl Register for ruduino::cores::atmega168a::EIMSK[src]

type T = u8

impl Register for ruduino::cores::atmega168a::EXTENDED[src]

type T = u8

impl Register for ruduino::cores::atmega168a::GPIOR0[src]

type T = u8

impl Register for ruduino::cores::atmega168a::GPIOR1[src]

type T = u8

impl Register for ruduino::cores::atmega168a::GPIOR2[src]

type T = u8

impl Register for ruduino::cores::atmega168a::HIGH[src]

type T = u8

impl Register for ruduino::cores::atmega168a::ICR1[src]

type T = u16

impl Register for ruduino::cores::atmega168a::LOCKBIT[src]

type T = u8

impl Register for ruduino::cores::atmega168a::LOW[src]

type T = u8

impl Register for ruduino::cores::atmega168a::MCUCR[src]

type T = u8

impl Register for ruduino::cores::atmega168a::MCUSR[src]

type T = u8

impl Register for ruduino::cores::atmega168a::OCR0A[src]

type T = u8

impl Register for ruduino::cores::atmega168a::OCR0B[src]

type T = u8

impl Register for ruduino::cores::atmega168a::OCR1A[src]

type T = u16

impl Register for ruduino::cores::atmega168a::OCR1B[src]

type T = u16

impl Register for ruduino::cores::atmega168a::OCR2A[src]

type T = u8

impl Register for ruduino::cores::atmega168a::OCR2B[src]

type T = u8

impl Register for ruduino::cores::atmega168a::OSCCAL[src]

type T = u8

impl Register for ruduino::cores::atmega168a::PCICR[src]

type T = u8

impl Register for ruduino::cores::atmega168a::PCIFR[src]

type T = u8

impl Register for ruduino::cores::atmega168a::PCMSK0[src]

type T = u8

impl Register for ruduino::cores::atmega168a::PCMSK1[src]

type T = u8

impl Register for ruduino::cores::atmega168a::PCMSK2[src]

type T = u8

impl Register for ruduino::cores::atmega168a::PINB[src]

type T = u8

impl Register for ruduino::cores::atmega168a::PINC[src]

type T = u8

impl Register for ruduino::cores::atmega168a::PIND[src]

type T = u8

impl Register for ruduino::cores::atmega168a::PORTB[src]

type T = u8

impl Register for ruduino::cores::atmega168a::PORTC[src]

type T = u8

impl Register for ruduino::cores::atmega168a::PORTD[src]

type T = u8

impl Register for ruduino::cores::atmega168a::PRR[src]

type T = u8

impl Register for ruduino::cores::atmega168a::SMCR[src]

type T = u8

impl Register for ruduino::cores::atmega168a::SP[src]

type T = u16

impl Register for ruduino::cores::atmega168a::SPCR[src]

type T = u8

impl Register for ruduino::cores::atmega168a::SPDR[src]

type T = u8

impl Register for ruduino::cores::atmega168a::SPMCSR[src]

type T = u8

impl Register for ruduino::cores::atmega168a::SPSR[src]

type T = u8

impl Register for ruduino::cores::atmega168a::SREG[src]

type T = u8

impl Register for ruduino::cores::atmega168a::TCCR0A[src]

type T = u8

impl Register for ruduino::cores::atmega168a::TCCR0B[src]

type T = u8

impl Register for ruduino::cores::atmega168a::TCCR1A[src]

type T = u8

impl Register for ruduino::cores::atmega168a::TCCR1B[src]

type T = u8

impl Register for ruduino::cores::atmega168a::TCCR1C[src]

type T = u8

impl Register for ruduino::cores::atmega168a::TCCR2A[src]

type T = u8

impl Register for ruduino::cores::atmega168a::TCCR2B[src]

type T = u8

impl Register for ruduino::cores::atmega168a::TCNT0[src]

type T = u8

impl Register for ruduino::cores::atmega168a::TCNT1[src]

type T = u16

impl Register for ruduino::cores::atmega168a::TCNT2[src]

type T = u8

impl Register for ruduino::cores::atmega168a::TIFR0[src]

type T = u8

impl Register for ruduino::cores::atmega168a::TIFR1[src]

type T = u8

impl Register for ruduino::cores::atmega168a::TIFR2[src]

type T = u8

impl Register for ruduino::cores::atmega168a::TIMSK0[src]

type T = u8

impl Register for ruduino::cores::atmega168a::TIMSK1[src]

type T = u8

impl Register for ruduino::cores::atmega168a::TIMSK2[src]

type T = u8

impl Register for ruduino::cores::atmega168a::TWAMR[src]

type T = u8

impl Register for ruduino::cores::atmega168a::TWAR[src]

type T = u8

impl Register for ruduino::cores::atmega168a::TWBR[src]

type T = u8

impl Register for ruduino::cores::atmega168a::TWCR[src]

type T = u8

impl Register for ruduino::cores::atmega168a::TWDR[src]

type T = u8

impl Register for ruduino::cores::atmega168a::TWSR[src]

type T = u8

impl Register for ruduino::cores::atmega168a::UBRR0[src]

type T = u16

impl Register for ruduino::cores::atmega168a::UCSR0A[src]

type T = u8

impl Register for ruduino::cores::atmega168a::UCSR0B[src]

type T = u8

impl Register for ruduino::cores::atmega168a::UCSR0C[src]

type T = u8

impl Register for ruduino::cores::atmega168a::UDR0[src]

type T = u8

impl Register for ruduino::cores::atmega168a::WDTCSR[src]

type T = u8

impl Register for ruduino::cores::atmega168p::ACSR[src]

type T = u8

impl Register for ruduino::cores::atmega168p::ADC[src]

type T = u16

impl Register for ruduino::cores::atmega168p::ADCSRA[src]

type T = u8

impl Register for ruduino::cores::atmega168p::ADCSRB[src]

type T = u8

impl Register for ruduino::cores::atmega168p::ADMUX[src]

type T = u8

impl Register for ruduino::cores::atmega168p::ASSR[src]

type T = u8

impl Register for ruduino::cores::atmega168p::CLKPR[src]

type T = u8

impl Register for ruduino::cores::atmega168p::DDRB[src]

type T = u8

impl Register for ruduino::cores::atmega168p::DDRC[src]

type T = u8

impl Register for ruduino::cores::atmega168p::DDRD[src]

type T = u8

impl Register for ruduino::cores::atmega168p::DIDR0[src]

type T = u8

impl Register for ruduino::cores::atmega168p::DIDR1[src]

type T = u8

impl Register for ruduino::cores::atmega168p::EEAR[src]

type T = u16

impl Register for ruduino::cores::atmega168p::EECR[src]

type T = u8

impl Register for ruduino::cores::atmega168p::EEDR[src]

type T = u8

impl Register for ruduino::cores::atmega168p::EICRA[src]

type T = u8

impl Register for ruduino::cores::atmega168p::EIFR[src]

type T = u8

impl Register for ruduino::cores::atmega168p::EIMSK[src]

type T = u8

impl Register for ruduino::cores::atmega168p::EXTENDED[src]

type T = u8

impl Register for ruduino::cores::atmega168p::GPIOR0[src]

type T = u8

impl Register for ruduino::cores::atmega168p::GPIOR1[src]

type T = u8

impl Register for ruduino::cores::atmega168p::GPIOR2[src]

type T = u8

impl Register for ruduino::cores::atmega168p::HIGH[src]

type T = u8

impl Register for ruduino::cores::atmega168p::ICR1[src]

type T = u16

impl Register for ruduino::cores::atmega168p::LOCKBIT[src]

type T = u8

impl Register for ruduino::cores::atmega168p::LOW[src]

type T = u8

impl Register for ruduino::cores::atmega168p::MCUCR[src]

type T = u8

impl Register for ruduino::cores::atmega168p::MCUSR[src]

type T = u8

impl Register for ruduino::cores::atmega168p::OCR0A[src]

type T = u8

impl Register for ruduino::cores::atmega168p::OCR0B[src]

type T = u8

impl Register for ruduino::cores::atmega168p::OCR1A[src]

type T = u16

impl Register for ruduino::cores::atmega168p::OCR1B[src]

type T = u16

impl Register for ruduino::cores::atmega168p::OCR2A[src]

type T = u8

impl Register for ruduino::cores::atmega168p::OCR2B[src]

type T = u8

impl Register for ruduino::cores::atmega168p::OSCCAL[src]

type T = u8

impl Register for ruduino::cores::atmega168p::PCICR[src]

type T = u8

impl Register for ruduino::cores::atmega168p::PCIFR[src]

type T = u8

impl Register for ruduino::cores::atmega168p::PCMSK0[src]

type T = u8

impl Register for ruduino::cores::atmega168p::PCMSK1[src]

type T = u8

impl Register for ruduino::cores::atmega168p::PCMSK2[src]

type T = u8

impl Register for ruduino::cores::atmega168p::PINB[src]

type T = u8

impl Register for ruduino::cores::atmega168p::PINC[src]

type T = u8

impl Register for ruduino::cores::atmega168p::PIND[src]

type T = u8

impl Register for ruduino::cores::atmega168p::PORTB[src]

type T = u8

impl Register for ruduino::cores::atmega168p::PORTC[src]

type T = u8

impl Register for ruduino::cores::atmega168p::PORTD[src]

type T = u8

impl Register for ruduino::cores::atmega168p::PRR[src]

type T = u8

impl Register for ruduino::cores::atmega168p::SMCR[src]

type T = u8

impl Register for ruduino::cores::atmega168p::SP[src]

type T = u16

impl Register for ruduino::cores::atmega168p::SPCR[src]

type T = u8

impl Register for ruduino::cores::atmega168p::SPDR[src]

type T = u8

impl Register for ruduino::cores::atmega168p::SPMCSR[src]

type T = u8

impl Register for ruduino::cores::atmega168p::SPSR[src]

type T = u8

impl Register for ruduino::cores::atmega168p::SREG[src]

type T = u8

impl Register for ruduino::cores::atmega168p::TCCR0A[src]

type T = u8

impl Register for ruduino::cores::atmega168p::TCCR0B[src]

type T = u8

impl Register for ruduino::cores::atmega168p::TCCR1A[src]

type T = u8

impl Register for ruduino::cores::atmega168p::TCCR1B[src]

type T = u8

impl Register for ruduino::cores::atmega168p::TCCR1C[src]

type T = u8

impl Register for ruduino::cores::atmega168p::TCCR2A[src]

type T = u8

impl Register for ruduino::cores::atmega168p::TCCR2B[src]

type T = u8

impl Register for ruduino::cores::atmega168p::TCNT0[src]

type T = u8

impl Register for ruduino::cores::atmega168p::TCNT1[src]

type T = u16

impl Register for ruduino::cores::atmega168p::TCNT2[src]

type T = u8

impl Register for ruduino::cores::atmega168p::TIFR0[src]

type T = u8

impl Register for ruduino::cores::atmega168p::TIFR1[src]

type T = u8

impl Register for ruduino::cores::atmega168p::TIFR2[src]

type T = u8

impl Register for ruduino::cores::atmega168p::TIMSK0[src]

type T = u8

impl Register for ruduino::cores::atmega168p::TIMSK1[src]

type T = u8

impl Register for ruduino::cores::atmega168p::TIMSK2[src]

type T = u8

impl Register for ruduino::cores::atmega168p::TWAMR[src]

type T = u8

impl Register for ruduino::cores::atmega168p::TWAR[src]

type T = u8

impl Register for ruduino::cores::atmega168p::TWBR[src]

type T = u8

impl Register for ruduino::cores::atmega168p::TWCR[src]

type T = u8

impl Register for ruduino::cores::atmega168p::TWDR[src]

type T = u8

impl Register for ruduino::cores::atmega168p::TWSR[src]

type T = u8

impl Register for ruduino::cores::atmega168p::UBRR0[src]

type T = u16

impl Register for ruduino::cores::atmega168p::UCSR0A[src]

type T = u8

impl Register for ruduino::cores::atmega168p::UCSR0B[src]

type T = u8

impl Register for ruduino::cores::atmega168p::UCSR0C[src]

type T = u8

impl Register for ruduino::cores::atmega168p::UDR0[src]

type T = u8

impl Register for ruduino::cores::atmega168p::WDTCSR[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::ACSR[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::ADC[src]

type T = u16

impl Register for ruduino::cores::atmega168pa::ADCSRA[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::ADCSRB[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::ADMUX[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::ASSR[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::CLKPR[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::DDRB[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::DDRC[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::DDRD[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::DIDR0[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::DIDR1[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::EEAR[src]

type T = u16

impl Register for ruduino::cores::atmega168pa::EECR[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::EEDR[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::EICRA[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::EIFR[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::EIMSK[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::EXTENDED[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::GPIOR0[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::GPIOR1[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::GPIOR2[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::HIGH[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::ICR1[src]

type T = u16

impl Register for ruduino::cores::atmega168pa::LOCKBIT[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::LOW[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::MCUCR[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::MCUSR[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::OCR0A[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::OCR0B[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::OCR1A[src]

type T = u16

impl Register for ruduino::cores::atmega168pa::OCR1B[src]

type T = u16

impl Register for ruduino::cores::atmega168pa::OCR2A[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::OCR2B[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::OSCCAL[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::PCICR[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::PCIFR[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::PCMSK0[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::PCMSK1[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::PCMSK2[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::PINB[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::PINC[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::PIND[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::PORTB[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::PORTC[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::PORTD[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::PRR[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::SMCR[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::SP[src]

type T = u16

impl Register for ruduino::cores::atmega168pa::SPCR[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::SPDR[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::SPMCSR[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::SPSR[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::SREG[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::TCCR0A[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::TCCR0B[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::TCCR1A[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::TCCR1B[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::TCCR1C[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::TCCR2A[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::TCCR2B[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::TCNT0[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::TCNT1[src]

type T = u16

impl Register for ruduino::cores::atmega168pa::TCNT2[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::TIFR0[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::TIFR1[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::TIFR2[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::TIMSK0[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::TIMSK1[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::TIMSK2[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::TWAMR[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::TWAR[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::TWBR[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::TWCR[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::TWDR[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::TWSR[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::UBRR0[src]

type T = u16

impl Register for ruduino::cores::atmega168pa::UCSR0A[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::UCSR0B[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::UCSR0C[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::UDR0[src]

type T = u8

impl Register for ruduino::cores::atmega168pa::WDTCSR[src]

type T = u8

impl Register for ruduino::cores::atmega328::ACSR[src]

type T = u8

impl Register for ruduino::cores::atmega328::ADC[src]

type T = u16

impl Register for ruduino::cores::atmega328::ADCSRA[src]

type T = u8

impl Register for ruduino::cores::atmega328::ADCSRB[src]

type T = u8

impl Register for ruduino::cores::atmega328::ADMUX[src]

type T = u8

impl Register for ruduino::cores::atmega328::ASSR[src]

type T = u8

impl Register for ruduino::cores::atmega328::CLKPR[src]

type T = u8

impl Register for ruduino::cores::atmega328::DDRB[src]

type T = u8

impl Register for ruduino::cores::atmega328::DDRC[src]

type T = u8

impl Register for ruduino::cores::atmega328::DDRD[src]

type T = u8

impl Register for ruduino::cores::atmega328::DIDR0[src]

type T = u8

impl Register for ruduino::cores::atmega328::DIDR1[src]

type T = u8

impl Register for ruduino::cores::atmega328::EEAR[src]

type T = u16

impl Register for ruduino::cores::atmega328::EECR[src]

type T = u8

impl Register for ruduino::cores::atmega328::EEDR[src]

type T = u8

impl Register for ruduino::cores::atmega328::EICRA[src]

type T = u8

impl Register for ruduino::cores::atmega328::EIFR[src]

type T = u8

impl Register for ruduino::cores::atmega328::EIMSK[src]

type T = u8

impl Register for ruduino::cores::atmega328::EXTENDED[src]

type T = u8

impl Register for ruduino::cores::atmega328::GPIOR0[src]

type T = u8

impl Register for ruduino::cores::atmega328::GPIOR1[src]

type T = u8

impl Register for ruduino::cores::atmega328::GPIOR2[src]

type T = u8

impl Register for ruduino::cores::atmega328::HIGH[src]

type T = u8

impl Register for ruduino::cores::atmega328::ICR1[src]

type T = u16

impl Register for ruduino::cores::atmega328::LOCKBIT[src]

type T = u8

impl Register for ruduino::cores::atmega328::LOW[src]

type T = u8

impl Register for ruduino::cores::atmega328::MCUCR[src]

type T = u8

impl Register for ruduino::cores::atmega328::MCUSR[src]

type T = u8

impl Register for ruduino::cores::atmega328::OCR0A[src]

type T = u8

impl Register for ruduino::cores::atmega328::OCR0B[src]

type T = u8

impl Register for ruduino::cores::atmega328::OCR1A[src]

type T = u16

impl Register for ruduino::cores::atmega328::OCR1B[src]

type T = u16

impl Register for ruduino::cores::atmega328::OCR2A[src]

type T = u8

impl Register for ruduino::cores::atmega328::OCR2B[src]

type T = u8

impl Register for ruduino::cores::atmega328::OSCCAL[src]

type T = u8

impl Register for ruduino::cores::atmega328::PCICR[src]

type T = u8

impl Register for ruduino::cores::atmega328::PCIFR[src]

type T = u8

impl Register for ruduino::cores::atmega328::PCMSK0[src]

type T = u8

impl Register for ruduino::cores::atmega328::PCMSK1[src]

type T = u8

impl Register for ruduino::cores::atmega328::PCMSK2[src]

type T = u8

impl Register for ruduino::cores::atmega328::PINB[src]

type T = u8

impl Register for ruduino::cores::atmega328::PINC[src]

type T = u8

impl Register for ruduino::cores::atmega328::PIND[src]

type T = u8

impl Register for ruduino::cores::atmega328::PORTB[src]

type T = u8

impl Register for ruduino::cores::atmega328::PORTC[src]

type T = u8

impl Register for ruduino::cores::atmega328::PORTD[src]

type T = u8

impl Register for ruduino::cores::atmega328::PRR[src]

type T = u8

impl Register for ruduino::cores::atmega328::SMCR[src]

type T = u8

impl Register for ruduino::cores::atmega328::SP[src]

type T = u16

impl Register for ruduino::cores::atmega328::SPCR[src]

type T = u8

impl Register for ruduino::cores::atmega328::SPDR[src]

type T = u8

impl Register for ruduino::cores::atmega328::SPMCSR[src]

type T = u8

impl Register for ruduino::cores::atmega328::SPSR[src]

type T = u8

impl Register for ruduino::cores::atmega328::SREG[src]

type T = u8

impl Register for ruduino::cores::atmega328::TCCR0A[src]

type T = u8

impl Register for ruduino::cores::atmega328::TCCR0B[src]

type T = u8

impl Register for ruduino::cores::atmega328::TCCR1A[src]

type T = u8

impl Register for ruduino::cores::atmega328::TCCR1B[src]

type T = u8

impl Register for ruduino::cores::atmega328::TCCR1C[src]

type T = u8

impl Register for ruduino::cores::atmega328::TCCR2A[src]

type T = u8

impl Register for ruduino::cores::atmega328::TCCR2B[src]

type T = u8

impl Register for ruduino::cores::atmega328::TCNT0[src]

type T = u8

impl Register for ruduino::cores::atmega328::TCNT1[src]

type T = u16

impl Register for ruduino::cores::atmega328::TCNT2[src]

type T = u8

impl Register for ruduino::cores::atmega328::TIFR0[src]

type T = u8

impl Register for ruduino::cores::atmega328::TIFR1[src]

type T = u8

impl Register for ruduino::cores::atmega328::TIFR2[src]

type T = u8

impl Register for ruduino::cores::atmega328::TIMSK0[src]

type T = u8

impl Register for ruduino::cores::atmega328::TIMSK1[src]

type T = u8

impl Register for ruduino::cores::atmega328::TIMSK2[src]

type T = u8

impl Register for ruduino::cores::atmega328::TWAMR[src]

type T = u8

impl Register for ruduino::cores::atmega328::TWAR[src]

type T = u8

impl Register for ruduino::cores::atmega328::TWBR[src]

type T = u8

impl Register for ruduino::cores::atmega328::TWCR[src]

type T = u8

impl Register for ruduino::cores::atmega328::TWDR[src]

type T = u8

impl Register for ruduino::cores::atmega328::TWSR[src]

type T = u8

impl Register for ruduino::cores::atmega328::UBRR0[src]

type T = u16

impl Register for ruduino::cores::atmega328::UCSR0A[src]

type T = u8

impl Register for ruduino::cores::atmega328::UCSR0B[src]

type T = u8

impl Register for ruduino::cores::atmega328::UCSR0C[src]

type T = u8

impl Register for ruduino::cores::atmega328::UDR0[src]

type T = u8

impl Register for ruduino::cores::atmega328::WDTCSR[src]

type T = u8

impl Register for ruduino::cores::atmega328p::ACSR[src]

type T = u8

impl Register for ruduino::cores::atmega328p::ADC[src]

type T = u16

impl Register for ruduino::cores::atmega328p::ADCSRA[src]

type T = u8

impl Register for ruduino::cores::atmega328p::ADCSRB[src]

type T = u8

impl Register for ruduino::cores::atmega328p::ADMUX[src]

type T = u8

impl Register for ruduino::cores::atmega328p::ASSR[src]

type T = u8

impl Register for ruduino::cores::atmega328p::CLKPR[src]

type T = u8

impl Register for ruduino::cores::atmega328p::DDRB[src]

type T = u8

impl Register for ruduino::cores::atmega328p::DDRC[src]

type T = u8

impl Register for ruduino::cores::atmega328p::DDRD[src]

type T = u8

impl Register for ruduino::cores::atmega328p::DIDR0[src]

type T = u8

impl Register for ruduino::cores::atmega328p::DIDR1[src]

type T = u8

impl Register for ruduino::cores::atmega328p::EEAR[src]

type T = u16

impl Register for ruduino::cores::atmega328p::EECR[src]

type T = u8

impl Register for ruduino::cores::atmega328p::EEDR[src]

type T = u8

impl Register for ruduino::cores::atmega328p::EICRA[src]

type T = u8

impl Register for ruduino::cores::atmega328p::EIFR[src]

type T = u8

impl Register for ruduino::cores::atmega328p::EIMSK[src]

type T = u8

impl Register for ruduino::cores::atmega328p::EXTENDED[src]

type T = u8

impl Register for ruduino::cores::atmega328p::GPIOR0[src]

type T = u8

impl Register for ruduino::cores::atmega328p::GPIOR1[src]

type T = u8

impl Register for ruduino::cores::atmega328p::GPIOR2[src]

type T = u8

impl Register for ruduino::cores::atmega328p::HIGH[src]

type T = u8

impl Register for ruduino::cores::atmega328p::ICR1[src]

type T = u16

impl Register for ruduino::cores::atmega328p::LOCKBIT[src]

type T = u8

impl Register for ruduino::cores::atmega328p::LOW[src]

type T = u8

impl Register for ruduino::cores::atmega328p::MCUCR[src]

type T = u8

impl Register for ruduino::cores::atmega328p::MCUSR[src]

type T = u8

impl Register for ruduino::cores::atmega328p::OCR0A[src]

type T = u8

impl Register for ruduino::cores::atmega328p::OCR0B[src]

type T = u8

impl Register for ruduino::cores::atmega328p::OCR1A[src]

type T = u16

impl Register for ruduino::cores::atmega328p::OCR1B[src]

type T = u16

impl Register for ruduino::cores::atmega328p::OCR2A[src]

type T = u8

impl Register for ruduino::cores::atmega328p::OCR2B[src]

type T = u8

impl Register for ruduino::cores::atmega328p::OSCCAL[src]

type T = u8

impl Register for ruduino::cores::atmega328p::PCICR[src]

type T = u8

impl Register for ruduino::cores::atmega328p::PCIFR[src]

type T = u8

impl Register for ruduino::cores::atmega328p::PCMSK0[src]

type T = u8

impl Register for ruduino::cores::atmega328p::PCMSK1[src]

type T = u8

impl Register for ruduino::cores::atmega328p::PCMSK2[src]

type T = u8

impl Register for ruduino::cores::atmega328p::PINB[src]

type T = u8

impl Register for ruduino::cores::atmega328p::PINC[src]

type T = u8

impl Register for ruduino::cores::atmega328p::PIND[src]

type T = u8

impl Register for ruduino::cores::atmega328p::PORTB[src]

type T = u8

impl Register for ruduino::cores::atmega328p::PORTC[src]

type T = u8

impl Register for ruduino::cores::atmega328p::PORTD[src]

type T = u8

impl Register for ruduino::cores::atmega328p::PRR[src]

type T = u8

impl Register for ruduino::cores::atmega328p::SMCR[src]

type T = u8

impl Register for ruduino::cores::atmega328p::SP[src]

type T = u16

impl Register for ruduino::cores::atmega328p::SPCR[src]

type T = u8

impl Register for ruduino::cores::atmega328p::SPDR[src]

type T = u8

impl Register for ruduino::cores::atmega328p::SPMCSR[src]

type T = u8

impl Register for ruduino::cores::atmega328p::SPSR[src]

type T = u8

impl Register for ruduino::cores::atmega328p::SREG[src]

type T = u8

impl Register for ruduino::cores::atmega328p::TCCR0A[src]

type T = u8

impl Register for ruduino::cores::atmega328p::TCCR0B[src]

type T = u8

impl Register for ruduino::cores::atmega328p::TCCR1A[src]

type T = u8

impl Register for ruduino::cores::atmega328p::TCCR1B[src]

type T = u8

impl Register for ruduino::cores::atmega328p::TCCR1C[src]

type T = u8

impl Register for ruduino::cores::atmega328p::TCCR2A[src]

type T = u8

impl Register for ruduino::cores::atmega328p::TCCR2B[src]

type T = u8

impl Register for ruduino::cores::atmega328p::TCNT0[src]

type T = u8

impl Register for ruduino::cores::atmega328p::TCNT1[src]

type T = u16

impl Register for ruduino::cores::atmega328p::TCNT2[src]

type T = u8

impl Register for ruduino::cores::atmega328p::TIFR0[src]

type T = u8

impl Register for ruduino::cores::atmega328p::TIFR1[src]

type T = u8

impl Register for ruduino::cores::atmega328p::TIFR2[src]

type T = u8

impl Register for ruduino::cores::atmega328p::TIMSK0[src]

type T = u8

impl Register for ruduino::cores::atmega328p::TIMSK1[src]

type T = u8

impl Register for ruduino::cores::atmega328p::TIMSK2[src]

type T = u8

impl Register for ruduino::cores::atmega328p::TWAMR[src]

type T = u8

impl Register for ruduino::cores::atmega328p::TWAR[src]

type T = u8

impl Register for ruduino::cores::atmega328p::TWBR[src]

type T = u8

impl Register for ruduino::cores::atmega328p::TWCR[src]

type T = u8

impl Register for ruduino::cores::atmega328p::TWDR[src]

type T = u8

impl Register for ruduino::cores::atmega328p::TWSR[src]

type T = u8

impl Register for ruduino::cores::atmega328p::UBRR0[src]

type T = u16

impl Register for ruduino::cores::atmega328p::UCSR0A[src]

type T = u8

impl Register for ruduino::cores::atmega328p::UCSR0B[src]

type T = u8

impl Register for ruduino::cores::atmega328p::UCSR0C[src]

type T = u8

impl Register for ruduino::cores::atmega328p::UDR0[src]

type T = u8

impl Register for ruduino::cores::atmega328p::WDTCSR[src]

type T = u8

Loading content...