From 9439d1f4a1cf7fa60fbf66457548ff11050cd945 Mon Sep 17 00:00:00 2001 From: Michael Buesch Date: Wed, 22 Aug 2012 23:54:54 +0200 Subject: Add support for AtMega88PA Signed-off-by: Michael Buesch --- libtoprammer/chips/atmega88dip28.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'libtoprammer/chips') diff --git a/libtoprammer/chips/atmega88dip28.py b/libtoprammer/chips/atmega88dip28.py index de1fc2b..aad444d 100644 --- a/libtoprammer/chips/atmega88dip28.py +++ b/libtoprammer/chips/atmega88dip28.py @@ -45,3 +45,26 @@ ChipDescription( description = "AtMega88", packages = ( ("DIP28", ""), ), ) + +class Chip_ATMega88paDIP28(Chip_ATMega_common): + def __init__(self): + Chip_ATMega_common.__init__(self, + chipPackage = "DIP28", + chipPinVCC = 7, + chipPinsVPP = 1, + chipPinGND = 8, + signature = "\x1E\x93\x0F", + flashPageSize = 32, + flashPages = 128, + eepromPageSize = 4, + eepromPages = 128) + +ChipDescription( + Chip_ATMega88paDIP28, + bitfile = "atmega8dip28", + chipID = "atmega88padip28", + runtimeID = (0x0003, 0x01), + chipVendors = "Atmel", + description = "AtMega88PA", + packages = ( ("DIP28", ""), ), +) -- cgit v1.2.3