avr: Add support for atmega328 chip

The atmega328 is basically the same as the atmega168 - it just adds
some additional memory.  Allow the chip to be selected during the
build.

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
Kevin O'Connor 2017-05-28 10:45:32 -04:00
parent 7e3d7e071f
commit d2547ce6b0
3 changed files with 8 additions and 5 deletions

View file

@ -27,8 +27,8 @@ def beaglebone_pins():
return gpios
MCU_PINS = {
"atmega168": port_pins(4), "atmega644p": port_pins(4),
"at90usb1286": port_pins(5),
"atmega168": port_pins(4), "atmega328": port_pins(4),
"atmega644p": port_pins(4), "at90usb1286": port_pins(5),
"atmega1280": port_pins(12), "atmega2560": port_pins(12),
"sam3x8e": port_pins(4, 32),
"pru": beaglebone_pins(),