avr: Initial support for Atmel AT90USB1286 mcu

Add GPIO definitions for the AT90USB1286.  Add code for communicating
over USB port on AT90USB1286.

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
Kevin O'Connor 2016-06-04 19:34:39 -04:00
parent 4326a3adce
commit 3eafc83458
10 changed files with 1239 additions and 3 deletions

View file

@ -21,6 +21,7 @@ PINS_atmega1280 = avr_pins(12)
MCU_PINS = {
"atmega168": PINS_atmega164, "atmega644p": PINS_atmega164,
"at90usb1286": avr_pins(5),
"atmega1280": PINS_atmega1280, "atmega2560": PINS_atmega1280,
}