~ruther/avr-device

ref: 203ca2d44d70267c01490052d731bf1c777dab6d avr-device/Cargo.toml -rw-r--r-- 770 bytes
ce2d815c — Rahix 5 years ago
Prepare 0.2.1

Signed-off-by: Rahix <rahix@rahix.de>
ab1f1360 — Rahix 5 years ago
Prepare 0.2.0

Signed-off-by: Rahix <rahix@rahix.de>
b0abe893 — Andrew Dona-Couch 5 years ago
Add support for ATtiny88
7b4ce9d2 — Rahix 5 years ago
Prepare 0.1.1

Signed-off-by: Rahix <rahix@rahix.de>
1e0eb40c — Andrew Dona-Couch 5 years ago
Add support for ATmega2560
72c5d2a4 — Rahix 5 years ago
Add version for avr-device-macros

Signed-off-by: Rahix <rahix@rahix.de>
941edac6 — Rahix 5 years ago
Build all features on docs.rs

Signed-off-by: Rahix <rahix@rahix.de>
ce2fbacc — Rahix 5 years ago
Include generated files instead of build-script

Signed-off-by: Rahix <rahix@rahix.de>
d11a9c2f — Rahix 5 years ago
Add crate metadata

Signed-off-by: Rahix <rahix@rahix.de>
29061345 — Rahix 5 years ago
Add basic support for ATmega64

Pull in the ATDF file from Microchip and add all the necessary plumbing
around the code-base to make it compile.  Not tested against real
hardware and no device-specific patches are included yet.

Signed-off-by: Rahix <rahix@rahix.de>
78a95883 — Rahix 5 years ago
Update dependency versions

Signed-off-by: Rahix <rahix@rahix.de>
88fcf0c8 — Rahix 6 years ago
Implement interrupts

This commit adds a new feature-flag `rt` which, when enabled, adds the
`#[interrupt]` procedural macro to define an interrupt handler.  Unlike
the implementation in cortex-m, this version needs an attribute which is
the name of the chip the interrupt is for.  In code, an interrupt
handler might look like this:

    #![feature(abi_avr_interrupt)]

    #[avr_device::interrupt(atmega32u4)]
    fn INT6() {
        // Do Something
    }

Closes #1.

Signed-off-by: Rahix <rahix@rahix.de>
dc45b3cc — Rahix 6 years ago
Switch to a new design as outlined in #17

Signed-off-by: Rahix <rahix@rahix.de>
b11ae983 — Rahix 6 years ago
Add build-script to auto-generate chip-defs

Signed-off-by: Rahix <rahix@rahix.de>
4f73fe2e — Gabriel Pickl 6 years ago
Added atmega1280.
34861ead — Filip 6 years ago
Add support for atmega8

Signed-off-by: Filip <filip.skubacz.public@gmail.com>
8b1679a8 — Rahix 6 years ago
Add support for atmega328p

Signed-off-by: Rahix <rahix@rahix.de>
4d71c0ee — Rahix 6 years ago
Add interrupts and use cfg-if

Signed-off-by: Rahix <rahix@rahix.de>
769efac4 — Rahix 6 years ago
Initial