1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
"""
# TOP2049 Open Source programming suite
#
# Microchip PIC16F1824 DIP14
#
# Copyright (c) 2013 Pavel Stemberk <stemberk@gmail.com>
#
# 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 Street, Fifth Floor, Boston, MA 02110-1301 USA.
"""
from microchip02_common import *
class Chip_Pic16F1824dip14(Chip_Microchip02_common):
voltageVDD = 3
voltageVPP = 8.5
#CONFIGURATION WORD FOR PIC10F200/202/204/206
#X X X X X X X MCLRE /CP WDT X X
logicalFlashProgramMemorySize = 0x8000
logicalFlashConfigurationMemorySize = 0x8000
rowSize = 32
nLatches = 32
userIDLocationSize = 4
def __init__(self):
Chip_Microchip02_common.__init__(self,
chipPackage="DIP14",
chipPinVCC=1,
chipPinsVPP=4,
chipPinGND=14,
signature="\x43\x27",
flashPageSize=0x1000,
flashPages=1,
eepromPageSize=0,
eepromPages=0,
fuseBytes=4
)
self.configWordAddr = 0x8007
#self.osccalAddr = 0x2000
self.userIDLocationAddr = 0x8000
self.deviceIDAddr = 0x8006
self.programMemoryByteAddressRange = [(0,2*self.flashPageSize)]
self.configWordByteAddressRange = [(2*self.configWordAddr,2*self.configWordAddr+self.fuseBytes-1)]
self.userIDLocationByteAddressRange = [(2*self.userIDLocationAddr, 2*(self.userIDLocationAddr+self.userIDLocationSize)-1)]
#self.osccalBackupAddr = self.userIDLocationAddr + self.userIDLocationSize
fuseDesc = (
BitDescription(0, "FOSC[0], 0=LP, 100=INTOSC"),
BitDescription(1, "FOSC[1]"),
BitDescription(2, "FOSC[2]"),
BitDescription(3, "WDTE[0], 00=WDT disabled, 11=WDT enabled"),
BitDescription(4, "WDTE[1]"),
BitDescription(5, "nPWRTE"),
BitDescription(6, "MCLRE, 1=nMCLR/Vpp pin is nMCLR, weak pull-up enabled, ignored if LVP=1 "),
BitDescription(7, "nCP 1=program memory code protection is disabled"),
BitDescription(8, "nCPD, 1=data memory code protection is disabled"),
BitDescription(9, "BOREN[0], 00=BOR disabled"),
BitDescription(10, "BOREN[1]"),
BitDescription(11, "nCLKOUTEN, 0=CLKOUT is enabled on CLKOUT pin"),
BitDescription(12, "IESO, 0=Internal/External Switchover mode is disabled"),
BitDescription(13, "FCMEM, 0=Fail-Safe Clock Monitor is disabled"),
BitDescription(14, "NA"),
BitDescription(15, "NA"),
BitDescription(16, "WRT[0], 11=Write protection off"),
BitDescription(17, "WRT[1]"),
BitDescription(18, "Unused"),
BitDescription(19, "Unused"),
BitDescription(20, "Unused"),
BitDescription(21, "Unused"),
BitDescription(22, "Unused"),
BitDescription(23, "Unused"),
BitDescription(24, "PLLEN, 0=4xPLL disabled"),
BitDescription(25, "STVREN, 1=Stack overflow or underflow will cause a reset"),
BitDescription(26, "BORV"),
BitDescription(27, "Unused"),
BitDescription(28, "nDEBUG, 0=ICSPCLK and ICSPDAT are dedicated to the debugger"),
BitDescription(29, "LVP 1=Low-voltage programming enabled"),
)
ChipDescription(
Chip_Pic16F1824dip14,
bitfile = "microchip01dip14dip20",
chipID = "pic16f1824dip14",
runtimeID = (0xDE03, 0x01),
chipVendors = "Microchip",
description = "PIC16F1824, PIC16LF1824",
packages = (("DIP14", ""),),
fuseDesc = fuseDesc,
maintainer = "Pavel Stemberk <stemberk@gmail.com>",
)
|