1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- #
- # THIS FILE WAS AUTOGENERATED BY makeSip6.py
- # Do not edit this file manually. All changes will be lost.
- #
- """
- # TOP2049 Open Source programming suite
- #
- # Microchip PIC10F322 SIP6
- #
- # 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 .microchip8_splittedPMarea_hasResetPC import *
- class Chip_Pic10F322sip6(microchip8_splittedPMarea_hasResetPC):
-
- rowSize = 16
- nLatches = 16
-
- logicalFlashProgramMemorySize = 0x2000
- logicalFlashConfigurationMemorySize = 0x2000
- def __init__(self):
- microchip8_splittedPMarea_hasResetPC.__init__(self,
- chipPackage = "DIP10",
- chipPinVCC = 9,
- chipPinsVPP = 10,
- chipPinGND = 8,
- signature=b"\x82\x29",
- flashPageSize=0x200,
- flashPages=1,
- eepromPageSize=0,
- eepromPages=0,
- fuseBytes=2
- )
- fuseDesc = (
- BitDescription(0, "FOSC, 1=CLKIN, 0=internal"),
- BitDescription(1, "BOREN[0]"),
- BitDescription(2, "BOREN[1]"),
- BitDescription(3, "WDTE[0]"),
- BitDescription(4, "WDTE[1]"),
- BitDescription(5, "nPWRTE"),
- BitDescription(6, "MCLRE, 1=RA3 is nMCLR, weak pull-up enabled"),
- BitDescription(7, "nCP"),
- BitDescription(8, "LVP"),
- BitDescription(9, "LPBOREN"),
- BitDescription(10, "BORV"),
- BitDescription(11, "WRT[0]"),
- BitDescription(12, "WRT[1] 11=write protection off"),
- BitDescription(13, "Unused"),
- )
- ChipDescription(
- Chip_Pic10F322sip6,
- bitfile = "microchip01sip6",
- chipID="pic10f322sip6",
- runtimeID = (0xDE05, 0x01),
- chipVendors="Microchip",
- description = "PIC10F322, PIC10LF322 - ICD",
- packages = (("DIP10", ""), ),
- fuseDesc=fuseDesc,
- maintainer="Pavel Stemberk <stemberk@gmail.com>",
- )
|