├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── examples └── atmega328p │ ├── .cargo │ └── config.toml │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── rust-toolchain.toml │ └── src │ └── main.rs ├── macros ├── Cargo.toml └── src │ └── lib.rs ├── patch ├── at90can128.yaml ├── at90can32.yaml ├── at90can64.yaml ├── at90usb1286.yaml ├── atmega1280.yaml ├── atmega1284p.yaml ├── atmega128a.yaml ├── atmega128rfa1.yaml ├── atmega16.yaml ├── atmega164pa.yaml ├── atmega168.yaml ├── atmega16u2.yaml ├── atmega2560.yaml ├── atmega3208.yaml ├── atmega3209.yaml ├── atmega324pa.yaml ├── atmega328p.yaml ├── atmega328pb.yaml ├── atmega32a.yaml ├── atmega32u2.yaml ├── atmega32u4.yaml ├── atmega4808.yaml ├── atmega4809.yaml ├── atmega48p.yaml ├── atmega64.yaml ├── atmega644.yaml ├── atmega8.yaml ├── atmega88p.yaml ├── atmega8u2.yaml ├── attiny13a.yaml ├── attiny1604.yaml ├── attiny1617.yaml ├── attiny1626.yaml ├── attiny167.yaml ├── attiny202.yaml ├── attiny204.yaml ├── attiny212.yaml ├── attiny214.yaml ├── attiny2313-common.yaml ├── attiny2313.yaml ├── attiny2313a.yaml ├── attiny26.yaml ├── attiny261a.yaml ├── attiny3217.yaml ├── attiny402.yaml ├── attiny404.yaml ├── attiny412.yaml ├── attiny414.yaml ├── attiny416.yaml ├── attiny417.yaml ├── attiny461a.yaml ├── attiny804.yaml ├── attiny816.yaml ├── attiny817.yaml ├── attiny828.yaml ├── attiny84.yaml ├── attiny841.yaml ├── attiny84a.yaml ├── attiny85.yaml ├── attiny861.yaml ├── attiny861a.yaml ├── attiny88.yaml ├── common │ ├── ac.yaml │ ├── adc.yaml │ ├── at90 │ │ ├── adc.yaml │ │ ├── spi.yaml │ │ └── usart.yaml │ ├── attiny-1-series.yaml │ ├── attiny-xmega │ │ ├── 0-series.yaml │ │ ├── 1-series.yaml │ │ ├── 2-series.yaml │ │ └── common.yaml │ ├── eeprom.yaml │ ├── mega0 │ │ └── port.yaml │ ├── pll.yaml │ ├── spi.yaml │ ├── tiny │ │ ├── attinyx61a-adc.yaml │ │ ├── attinyx61a-ports.yaml │ │ ├── attinyx61a-timers.yaml │ │ ├── exint.yaml │ │ └── usi.yaml │ ├── twi.yaml │ ├── usart-single-attiny2313.yaml │ ├── usart-single-attiny2313a.yaml │ ├── usart.yaml │ └── wdt.yaml └── timer │ ├── atmega1280-2560.yaml │ ├── atmega1284p.yaml │ ├── atmega128a.yaml │ ├── atmega128rfa1.yaml │ ├── atmega16.yaml │ ├── atmega2560.yaml │ ├── atmega324pa.yaml │ ├── atmega328p.yaml │ ├── atmega328pb.yaml │ ├── atmega32u4.yaml │ ├── atmega8.yaml │ ├── atmega8u2.yaml │ ├── attiny13a.yaml │ ├── attiny167.yaml │ ├── attiny2313-common.yaml │ ├── attiny828.yaml │ ├── attiny84.yaml │ ├── attiny841.yaml │ ├── attiny85.yaml │ ├── attiny861.yaml │ ├── attiny88.yaml │ └── dev │ ├── 10bit.yaml │ ├── 16bit-mega8.yaml │ ├── 16bit-tiny861-tc0.yaml │ ├── 16bit.yaml │ ├── 8bit-async-mega8.yaml │ ├── 8bit-async.yaml │ ├── 8bit-mega8.yaml │ ├── 8bit-tiny167.yaml │ ├── 8bit-tiny85-tc1.yaml │ ├── 8bit-tiny88.yaml │ ├── 8bit-tiny8n-tc0.yaml │ └── 8bit.yaml ├── src ├── asm.rs ├── devices.rs ├── interrupt.rs └── lib.rs └── vendor ├── LICENSE ├── README.md ├── at90can128.atdf ├── at90can32.atdf ├── at90can64.atdf ├── at90usb1286.atdf ├── atmega1280.atdf ├── atmega1284p.atdf ├── atmega128a.atdf ├── atmega128rfa1.atdf ├── atmega16.atdf ├── atmega164pa.atdf ├── atmega168.atdf ├── atmega16u2.atdf ├── atmega2560.atdf ├── atmega3208.atdf ├── atmega3209.atdf ├── atmega324pa.atdf ├── atmega328p.atdf ├── atmega328pb.atdf ├── atmega32a.atdf ├── atmega32u2.atdf ├── atmega32u4.atdf ├── atmega4808.atdf ├── atmega4809.atdf ├── atmega48p.atdf ├── atmega64.atdf ├── atmega644.atdf ├── atmega8.atdf ├── atmega88p.atdf ├── atmega8u2.atdf ├── attiny13a.atdf ├── attiny1604.atdf ├── attiny1606.atdf ├── attiny1614.atdf ├── attiny1617.atdf ├── attiny1626.atdf ├── attiny167.atdf ├── attiny202.atdf ├── attiny204.atdf ├── attiny212.atdf ├── attiny214.atdf ├── attiny2313.atdf ├── attiny2313a.atdf ├── attiny26.atdf ├── attiny261a.atdf ├── attiny3217.atdf ├── attiny402.atdf ├── attiny404.atdf ├── attiny412.atdf ├── attiny414.atdf ├── attiny416.atdf ├── attiny417.atdf ├── attiny44a.atdf ├── attiny461a.atdf ├── attiny804.atdf ├── attiny816.atdf ├── attiny817.atdf ├── attiny828.atdf ├── attiny84.atdf ├── attiny841.atdf ├── attiny84a.atdf ├── attiny85.atdf ├── attiny861.atdf ├── attiny861a.atdf ├── attiny88.atdf ├── avr128db28.atdf ├── avr128db48.atdf ├── avr64du28.atdf └── avr64du32.atdf /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/README.md -------------------------------------------------------------------------------- /examples/atmega328p/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/examples/atmega328p/.cargo/config.toml -------------------------------------------------------------------------------- /examples/atmega328p/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /examples/atmega328p/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/examples/atmega328p/Cargo.lock -------------------------------------------------------------------------------- /examples/atmega328p/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/examples/atmega328p/Cargo.toml -------------------------------------------------------------------------------- /examples/atmega328p/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/examples/atmega328p/README.md -------------------------------------------------------------------------------- /examples/atmega328p/rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/examples/atmega328p/rust-toolchain.toml -------------------------------------------------------------------------------- /examples/atmega328p/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/examples/atmega328p/src/main.rs -------------------------------------------------------------------------------- /macros/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/macros/Cargo.toml -------------------------------------------------------------------------------- /macros/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/macros/src/lib.rs -------------------------------------------------------------------------------- /patch/at90can128.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/at90can128.yaml -------------------------------------------------------------------------------- /patch/at90can32.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/at90can32.yaml -------------------------------------------------------------------------------- /patch/at90can64.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/at90can64.yaml -------------------------------------------------------------------------------- /patch/at90usb1286.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/at90usb1286.yaml -------------------------------------------------------------------------------- /patch/atmega1280.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/atmega1280.yaml -------------------------------------------------------------------------------- /patch/atmega1284p.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/atmega1284p.yaml -------------------------------------------------------------------------------- /patch/atmega128a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/atmega128a.yaml -------------------------------------------------------------------------------- /patch/atmega128rfa1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/atmega128rfa1.yaml -------------------------------------------------------------------------------- /patch/atmega16.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/atmega16.yaml -------------------------------------------------------------------------------- /patch/atmega164pa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/atmega164pa.yaml -------------------------------------------------------------------------------- /patch/atmega168.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/atmega168.yaml -------------------------------------------------------------------------------- /patch/atmega16u2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/atmega16u2.yaml -------------------------------------------------------------------------------- /patch/atmega2560.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/atmega2560.yaml -------------------------------------------------------------------------------- /patch/atmega3208.yaml: -------------------------------------------------------------------------------- 1 | _include: 2 | - "common/mega0/port.yaml" -------------------------------------------------------------------------------- /patch/atmega3209.yaml: -------------------------------------------------------------------------------- 1 | _include: 2 | - "common/mega0/port.yaml" -------------------------------------------------------------------------------- /patch/atmega324pa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/atmega324pa.yaml -------------------------------------------------------------------------------- /patch/atmega328p.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/atmega328p.yaml -------------------------------------------------------------------------------- /patch/atmega328pb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/atmega328pb.yaml -------------------------------------------------------------------------------- /patch/atmega32a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/atmega32a.yaml -------------------------------------------------------------------------------- /patch/atmega32u2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/atmega32u2.yaml -------------------------------------------------------------------------------- /patch/atmega32u4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/atmega32u4.yaml -------------------------------------------------------------------------------- /patch/atmega4808.yaml: -------------------------------------------------------------------------------- 1 | _include: 2 | - "common/mega0/port.yaml" -------------------------------------------------------------------------------- /patch/atmega4809.yaml: -------------------------------------------------------------------------------- 1 | _include: 2 | - "common/mega0/port.yaml" 3 | -------------------------------------------------------------------------------- /patch/atmega48p.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/atmega48p.yaml -------------------------------------------------------------------------------- /patch/atmega64.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/atmega64.yaml -------------------------------------------------------------------------------- /patch/atmega644.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/atmega644.yaml -------------------------------------------------------------------------------- /patch/atmega8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/atmega8.yaml -------------------------------------------------------------------------------- /patch/atmega88p.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/atmega88p.yaml -------------------------------------------------------------------------------- /patch/atmega8u2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/atmega8u2.yaml -------------------------------------------------------------------------------- /patch/attiny13a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/attiny13a.yaml -------------------------------------------------------------------------------- /patch/attiny1604.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/attiny1604.yaml -------------------------------------------------------------------------------- /patch/attiny1617.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/attiny1617.yaml -------------------------------------------------------------------------------- /patch/attiny1626.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/attiny1626.yaml -------------------------------------------------------------------------------- /patch/attiny167.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/attiny167.yaml -------------------------------------------------------------------------------- /patch/attiny202.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/attiny202.yaml -------------------------------------------------------------------------------- /patch/attiny204.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/attiny204.yaml -------------------------------------------------------------------------------- /patch/attiny212.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/attiny212.yaml -------------------------------------------------------------------------------- /patch/attiny214.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/attiny214.yaml -------------------------------------------------------------------------------- /patch/attiny2313-common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/attiny2313-common.yaml -------------------------------------------------------------------------------- /patch/attiny2313.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/attiny2313.yaml -------------------------------------------------------------------------------- /patch/attiny2313a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/attiny2313a.yaml -------------------------------------------------------------------------------- /patch/attiny26.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/attiny26.yaml -------------------------------------------------------------------------------- /patch/attiny261a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/attiny261a.yaml -------------------------------------------------------------------------------- /patch/attiny3217.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/attiny3217.yaml -------------------------------------------------------------------------------- /patch/attiny402.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/attiny402.yaml -------------------------------------------------------------------------------- /patch/attiny404.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/attiny404.yaml -------------------------------------------------------------------------------- /patch/attiny412.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/attiny412.yaml -------------------------------------------------------------------------------- /patch/attiny414.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/attiny414.yaml -------------------------------------------------------------------------------- /patch/attiny416.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/attiny416.yaml -------------------------------------------------------------------------------- /patch/attiny417.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/attiny417.yaml -------------------------------------------------------------------------------- /patch/attiny461a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/attiny461a.yaml -------------------------------------------------------------------------------- /patch/attiny804.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/attiny804.yaml -------------------------------------------------------------------------------- /patch/attiny816.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/attiny816.yaml -------------------------------------------------------------------------------- /patch/attiny817.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/attiny817.yaml -------------------------------------------------------------------------------- /patch/attiny828.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/attiny828.yaml -------------------------------------------------------------------------------- /patch/attiny84.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/attiny84.yaml -------------------------------------------------------------------------------- /patch/attiny841.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/attiny841.yaml -------------------------------------------------------------------------------- /patch/attiny84a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/attiny84a.yaml -------------------------------------------------------------------------------- /patch/attiny85.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/attiny85.yaml -------------------------------------------------------------------------------- /patch/attiny861.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/attiny861.yaml -------------------------------------------------------------------------------- /patch/attiny861a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/attiny861a.yaml -------------------------------------------------------------------------------- /patch/attiny88.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/attiny88.yaml -------------------------------------------------------------------------------- /patch/common/ac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/common/ac.yaml -------------------------------------------------------------------------------- /patch/common/adc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/common/adc.yaml -------------------------------------------------------------------------------- /patch/common/at90/adc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/common/at90/adc.yaml -------------------------------------------------------------------------------- /patch/common/at90/spi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/common/at90/spi.yaml -------------------------------------------------------------------------------- /patch/common/at90/usart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/common/at90/usart.yaml -------------------------------------------------------------------------------- /patch/common/attiny-1-series.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/common/attiny-1-series.yaml -------------------------------------------------------------------------------- /patch/common/attiny-xmega/0-series.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/common/attiny-xmega/0-series.yaml -------------------------------------------------------------------------------- /patch/common/attiny-xmega/1-series.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/common/attiny-xmega/1-series.yaml -------------------------------------------------------------------------------- /patch/common/attiny-xmega/2-series.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/common/attiny-xmega/2-series.yaml -------------------------------------------------------------------------------- /patch/common/attiny-xmega/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/common/attiny-xmega/common.yaml -------------------------------------------------------------------------------- /patch/common/eeprom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/common/eeprom.yaml -------------------------------------------------------------------------------- /patch/common/mega0/port.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/common/mega0/port.yaml -------------------------------------------------------------------------------- /patch/common/pll.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/common/pll.yaml -------------------------------------------------------------------------------- /patch/common/spi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/common/spi.yaml -------------------------------------------------------------------------------- /patch/common/tiny/attinyx61a-adc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/common/tiny/attinyx61a-adc.yaml -------------------------------------------------------------------------------- /patch/common/tiny/attinyx61a-ports.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/common/tiny/attinyx61a-ports.yaml -------------------------------------------------------------------------------- /patch/common/tiny/attinyx61a-timers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/common/tiny/attinyx61a-timers.yaml -------------------------------------------------------------------------------- /patch/common/tiny/exint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/common/tiny/exint.yaml -------------------------------------------------------------------------------- /patch/common/tiny/usi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/common/tiny/usi.yaml -------------------------------------------------------------------------------- /patch/common/twi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/common/twi.yaml -------------------------------------------------------------------------------- /patch/common/usart-single-attiny2313.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/common/usart-single-attiny2313.yaml -------------------------------------------------------------------------------- /patch/common/usart-single-attiny2313a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/common/usart-single-attiny2313a.yaml -------------------------------------------------------------------------------- /patch/common/usart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/common/usart.yaml -------------------------------------------------------------------------------- /patch/common/wdt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/common/wdt.yaml -------------------------------------------------------------------------------- /patch/timer/atmega1280-2560.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/timer/atmega1280-2560.yaml -------------------------------------------------------------------------------- /patch/timer/atmega1284p.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/timer/atmega1284p.yaml -------------------------------------------------------------------------------- /patch/timer/atmega128a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/timer/atmega128a.yaml -------------------------------------------------------------------------------- /patch/timer/atmega128rfa1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/timer/atmega128rfa1.yaml -------------------------------------------------------------------------------- /patch/timer/atmega16.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/timer/atmega16.yaml -------------------------------------------------------------------------------- /patch/timer/atmega2560.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/timer/atmega2560.yaml -------------------------------------------------------------------------------- /patch/timer/atmega324pa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/timer/atmega324pa.yaml -------------------------------------------------------------------------------- /patch/timer/atmega328p.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/timer/atmega328p.yaml -------------------------------------------------------------------------------- /patch/timer/atmega328pb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/timer/atmega328pb.yaml -------------------------------------------------------------------------------- /patch/timer/atmega32u4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/timer/atmega32u4.yaml -------------------------------------------------------------------------------- /patch/timer/atmega8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/timer/atmega8.yaml -------------------------------------------------------------------------------- /patch/timer/atmega8u2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/timer/atmega8u2.yaml -------------------------------------------------------------------------------- /patch/timer/attiny13a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/timer/attiny13a.yaml -------------------------------------------------------------------------------- /patch/timer/attiny167.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/timer/attiny167.yaml -------------------------------------------------------------------------------- /patch/timer/attiny2313-common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/timer/attiny2313-common.yaml -------------------------------------------------------------------------------- /patch/timer/attiny828.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/timer/attiny828.yaml -------------------------------------------------------------------------------- /patch/timer/attiny84.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/timer/attiny84.yaml -------------------------------------------------------------------------------- /patch/timer/attiny841.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/timer/attiny841.yaml -------------------------------------------------------------------------------- /patch/timer/attiny85.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/timer/attiny85.yaml -------------------------------------------------------------------------------- /patch/timer/attiny861.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/timer/attiny861.yaml -------------------------------------------------------------------------------- /patch/timer/attiny88.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/timer/attiny88.yaml -------------------------------------------------------------------------------- /patch/timer/dev/10bit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/timer/dev/10bit.yaml -------------------------------------------------------------------------------- /patch/timer/dev/16bit-mega8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/timer/dev/16bit-mega8.yaml -------------------------------------------------------------------------------- /patch/timer/dev/16bit-tiny861-tc0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/timer/dev/16bit-tiny861-tc0.yaml -------------------------------------------------------------------------------- /patch/timer/dev/16bit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/timer/dev/16bit.yaml -------------------------------------------------------------------------------- /patch/timer/dev/8bit-async-mega8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/timer/dev/8bit-async-mega8.yaml -------------------------------------------------------------------------------- /patch/timer/dev/8bit-async.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/timer/dev/8bit-async.yaml -------------------------------------------------------------------------------- /patch/timer/dev/8bit-mega8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/timer/dev/8bit-mega8.yaml -------------------------------------------------------------------------------- /patch/timer/dev/8bit-tiny167.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/timer/dev/8bit-tiny167.yaml -------------------------------------------------------------------------------- /patch/timer/dev/8bit-tiny85-tc1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/timer/dev/8bit-tiny85-tc1.yaml -------------------------------------------------------------------------------- /patch/timer/dev/8bit-tiny88.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/timer/dev/8bit-tiny88.yaml -------------------------------------------------------------------------------- /patch/timer/dev/8bit-tiny8n-tc0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/timer/dev/8bit-tiny8n-tc0.yaml -------------------------------------------------------------------------------- /patch/timer/dev/8bit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/patch/timer/dev/8bit.yaml -------------------------------------------------------------------------------- /src/asm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/src/asm.rs -------------------------------------------------------------------------------- /src/devices.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/src/devices.rs -------------------------------------------------------------------------------- /src/interrupt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/src/interrupt.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/src/lib.rs -------------------------------------------------------------------------------- /vendor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/LICENSE -------------------------------------------------------------------------------- /vendor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/README.md -------------------------------------------------------------------------------- /vendor/at90can128.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/at90can128.atdf -------------------------------------------------------------------------------- /vendor/at90can32.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/at90can32.atdf -------------------------------------------------------------------------------- /vendor/at90can64.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/at90can64.atdf -------------------------------------------------------------------------------- /vendor/at90usb1286.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/at90usb1286.atdf -------------------------------------------------------------------------------- /vendor/atmega1280.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/atmega1280.atdf -------------------------------------------------------------------------------- /vendor/atmega1284p.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/atmega1284p.atdf -------------------------------------------------------------------------------- /vendor/atmega128a.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/atmega128a.atdf -------------------------------------------------------------------------------- /vendor/atmega128rfa1.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/atmega128rfa1.atdf -------------------------------------------------------------------------------- /vendor/atmega16.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/atmega16.atdf -------------------------------------------------------------------------------- /vendor/atmega164pa.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/atmega164pa.atdf -------------------------------------------------------------------------------- /vendor/atmega168.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/atmega168.atdf -------------------------------------------------------------------------------- /vendor/atmega16u2.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/atmega16u2.atdf -------------------------------------------------------------------------------- /vendor/atmega2560.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/atmega2560.atdf -------------------------------------------------------------------------------- /vendor/atmega3208.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/atmega3208.atdf -------------------------------------------------------------------------------- /vendor/atmega3209.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/atmega3209.atdf -------------------------------------------------------------------------------- /vendor/atmega324pa.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/atmega324pa.atdf -------------------------------------------------------------------------------- /vendor/atmega328p.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/atmega328p.atdf -------------------------------------------------------------------------------- /vendor/atmega328pb.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/atmega328pb.atdf -------------------------------------------------------------------------------- /vendor/atmega32a.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/atmega32a.atdf -------------------------------------------------------------------------------- /vendor/atmega32u2.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/atmega32u2.atdf -------------------------------------------------------------------------------- /vendor/atmega32u4.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/atmega32u4.atdf -------------------------------------------------------------------------------- /vendor/atmega4808.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/atmega4808.atdf -------------------------------------------------------------------------------- /vendor/atmega4809.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/atmega4809.atdf -------------------------------------------------------------------------------- /vendor/atmega48p.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/atmega48p.atdf -------------------------------------------------------------------------------- /vendor/atmega64.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/atmega64.atdf -------------------------------------------------------------------------------- /vendor/atmega644.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/atmega644.atdf -------------------------------------------------------------------------------- /vendor/atmega8.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/atmega8.atdf -------------------------------------------------------------------------------- /vendor/atmega88p.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/atmega88p.atdf -------------------------------------------------------------------------------- /vendor/atmega8u2.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/atmega8u2.atdf -------------------------------------------------------------------------------- /vendor/attiny13a.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny13a.atdf -------------------------------------------------------------------------------- /vendor/attiny1604.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny1604.atdf -------------------------------------------------------------------------------- /vendor/attiny1606.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny1606.atdf -------------------------------------------------------------------------------- /vendor/attiny1614.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny1614.atdf -------------------------------------------------------------------------------- /vendor/attiny1617.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny1617.atdf -------------------------------------------------------------------------------- /vendor/attiny1626.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny1626.atdf -------------------------------------------------------------------------------- /vendor/attiny167.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny167.atdf -------------------------------------------------------------------------------- /vendor/attiny202.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny202.atdf -------------------------------------------------------------------------------- /vendor/attiny204.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny204.atdf -------------------------------------------------------------------------------- /vendor/attiny212.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny212.atdf -------------------------------------------------------------------------------- /vendor/attiny214.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny214.atdf -------------------------------------------------------------------------------- /vendor/attiny2313.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny2313.atdf -------------------------------------------------------------------------------- /vendor/attiny2313a.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny2313a.atdf -------------------------------------------------------------------------------- /vendor/attiny26.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny26.atdf -------------------------------------------------------------------------------- /vendor/attiny261a.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny261a.atdf -------------------------------------------------------------------------------- /vendor/attiny3217.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny3217.atdf -------------------------------------------------------------------------------- /vendor/attiny402.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny402.atdf -------------------------------------------------------------------------------- /vendor/attiny404.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny404.atdf -------------------------------------------------------------------------------- /vendor/attiny412.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny412.atdf -------------------------------------------------------------------------------- /vendor/attiny414.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny414.atdf -------------------------------------------------------------------------------- /vendor/attiny416.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny416.atdf -------------------------------------------------------------------------------- /vendor/attiny417.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny417.atdf -------------------------------------------------------------------------------- /vendor/attiny44a.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny44a.atdf -------------------------------------------------------------------------------- /vendor/attiny461a.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny461a.atdf -------------------------------------------------------------------------------- /vendor/attiny804.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny804.atdf -------------------------------------------------------------------------------- /vendor/attiny816.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny816.atdf -------------------------------------------------------------------------------- /vendor/attiny817.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny817.atdf -------------------------------------------------------------------------------- /vendor/attiny828.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny828.atdf -------------------------------------------------------------------------------- /vendor/attiny84.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny84.atdf -------------------------------------------------------------------------------- /vendor/attiny841.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny841.atdf -------------------------------------------------------------------------------- /vendor/attiny84a.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny84a.atdf -------------------------------------------------------------------------------- /vendor/attiny85.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny85.atdf -------------------------------------------------------------------------------- /vendor/attiny861.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny861.atdf -------------------------------------------------------------------------------- /vendor/attiny861a.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny861a.atdf -------------------------------------------------------------------------------- /vendor/attiny88.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/attiny88.atdf -------------------------------------------------------------------------------- /vendor/avr128db28.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/avr128db28.atdf -------------------------------------------------------------------------------- /vendor/avr128db48.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/avr128db48.atdf -------------------------------------------------------------------------------- /vendor/avr64du28.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/avr64du28.atdf -------------------------------------------------------------------------------- /vendor/avr64du32.atdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rahix/avr-device/HEAD/vendor/avr64du32.atdf --------------------------------------------------------------------------------