summaryrefslogtreecommitdiff
path: root/decoders/avr_isp/parts.py
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2012-07-28 10:51:32 +0200
committerUwe Hermann <uwe@hermann-uwe.de>2012-07-28 23:39:47 +0200
commit77adad943111ab064f01838033dc9c94152f46c7 (patch)
treef7b0f06db048d66f38085a83c95c5ec01a118531 /decoders/avr_isp/parts.py
parent3bd76451f01dface8df58828a2bbc242d3391db9 (diff)
downloadlibsigrokdecode-77adad943111ab064f01838033dc9c94152f46c7.tar.gz
libsigrokdecode-77adad943111ab064f01838033dc9c94152f46c7.zip
srd: avr_isp: Factor out part numbers/names to part.py.
Diffstat (limited to 'decoders/avr_isp/parts.py')
-rw-r--r--decoders/avr_isp/parts.py43
1 files changed, 43 insertions, 0 deletions
diff --git a/decoders/avr_isp/parts.py b/decoders/avr_isp/parts.py
new file mode 100644
index 0000000..fbc0b92
--- /dev/null
+++ b/decoders/avr_isp/parts.py
@@ -0,0 +1,43 @@
+##
+## This file is part of the sigrok project.
+##
+## Copyright (C) 2012 Uwe Hermann <uwe@hermann-uwe.de>
+##
+## This program is free software; you can redistribute it and/or modify
+## it under the terms of the GNU General Public License as published by
+## the Free Software Foundation; either version 2 of the License, or
+## (at your option) any later version.
+##
+## This program is distributed in the hope that it will be useful,
+## but WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+## GNU General Public License for more details.
+##
+## You should have received a copy of the GNU General Public License
+## along with this program; if not, write to the Free Software
+## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+##
+
+# Device code addresses:
+# 0x00: vendor code, 0x01: part family + flash size, 0x02: part number
+
+# Vendor code
+vendor_code = {
+ 0x1e: 'Atmel',
+ 0x00: 'Device locked',
+}
+
+# (Part family + flash size, part number)
+part = {
+ (0x90, 0x01): 'AT90S1200',
+ (0x91, 0x01): 'AT90S2313',
+ (0x92, 0x01): 'AT90S4414',
+ (0x92, 0x05): 'ATmega48', # 4kB flash
+ (0x93, 0x01): 'AT90S8515',
+ (0x93, 0x0a): 'ATmega88', # 8kB flash
+ (0x94, 0x06): 'ATmega168', # 16kB flash
+ (0xff, 0xff): 'Device code erased, or target missing',
+ (0x01, 0x02): 'Device locked',
+ # TODO: Lots more entries.
+}
+