PIC16C71-04I/P Microchip Technology, PIC16C71-04I/P Datasheet

IC MCU OTP 1KX14 A/D 18DIP

PIC16C71-04I/P

Manufacturer Part Number
PIC16C71-04I/P
Description
IC MCU OTP 1KX14 A/D 18DIP
Manufacturer
Microchip Technology
Series
PIC® 16Cr

Specifications of PIC16C71-04I/P

Program Memory Type
OTP
Program Memory Size
1.75KB (1K x 14)
Package / Case
18-DIP (0.300", 7.62mm)
Core Processor
PIC
Core Size
8-Bit
Speed
4MHz
Peripherals
POR, WDT
Number Of I /o
13
Ram Size
36 x 8
Voltage - Supply (vcc/vdd)
4 V ~ 6 V
Data Converters
A/D 4x8b
Oscillator Type
External
Operating Temperature
-40°C ~ 85°C
Processor Series
PIC16C
Core
PIC
Data Bus Width
8 bit
Data Ram Size
36 B
Maximum Clock Frequency
4 MHz
Number Of Programmable I/os
13
Number Of Timers
1
Operating Supply Voltage
2.5 V to 6 V
Maximum Operating Temperature
+ 85 C
Mounting Style
Through Hole
3rd Party Development Tools
52715-96, 52716-328, 52717-734
Development Tools By Supplier
ICE2000
Minimum Operating Temperature
- 40 C
On-chip Adc
4-ch x 8-bit
Lead Free Status / RoHS Status
Lead free / RoHS Compliant
For Use With
ISPICR1 - ADAPTER IN-CIRCUIT PROGRAMMING309-1059 - ADAPTER 18 ZIF BD W/18SO PLUGSDVA16XP180 - ADAPTER DEVICE FOR MPLAB-ICEAC164010 - MODULE SKT PROMATEII DIP/SOIC
Eeprom Size
-
Connectivity
-
Lead Free Status / Rohs Status
Lead free / RoHS Compliant

Available stocks

Company
Part Number
Manufacturer
Quantity
Price
Part Number:
PIC16C71-04I/P
Quantity:
172
The PIC16C712/716 parts you have received conform
functionally to the Device Data Sheet (DS41106A),
except for the anomalies described below.
The problem here will be addressed in future revisions
of the PIC16C712/716 silicon.
1.
EXAMPLE 1:
(Assumes that the T2CON and CCP1CON values are determined at assembly time and remain fixed.)
Code Example 1A:
;***********************************************************************
;
;
;
;
;
;
;
;
;
;
Assembly Code To Stop PWM Once Started:
PWMreset
 2003 Microchip Technology Inc.
The software supplied herewith by Microchip Technology Incorporated (the “Company”) is intended and supplied to you, the Com-
pany’s customer, for use solely and exclusively with products manufactured by the Company.
The software is owned by the Company and/or its supplier, and is protected under applicable copyright laws. All rights are reserved.
Any use in violation of the foregoing restrictions may subject the user to criminal sanctions under applicable laws, as well as to civil
liability for the breach of the terms and conditions of this license.
THIS SOFTWARE IS PROVIDED IN AN “AS IS” CONDITION. NO WARRANTIES, WHETHER EXPRESS, IMPLIED OR STATU-
TORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICU-
LAR PURPOSE APPLY TO THIS SOFTWARE. THE COMPANY SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR
SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER.
Module: CCP
When using the PIC16C712/716 in the Compare
or PWM mode, the TCCP bit of the TRISCCP
register will not tristate the output on pin RB3, as
described in Figure 7-2 of the Device Data Sheet.
The TCCP bit of the TRISCCP register has no
effect on the output of pin RB3.
Call these routines to turn the PWM off or on and ensure a Zero output on RB3
when PWM is off.
PWMreset - Clear T2CON Disabling Timer2 and Clearing Timer 2 Prescaler,
PWMrestart - Restore the T2CON register with the appropriate value for your
bcf
clrf
movf
return
movwf
PIC16C712/716 Rev. A Silicon/Data Sheet Errata
TMR2
then fill the TMR2 register with the CCPR1H value. This will cause
a Reset or Zero value on RB3.
STATUS,RP0
T2CON
CCPR1H,W
system needs. IT IS THE RESPONSIBILITY OF THE USER TO DETERMINE
THE CORRECT VALUE FOR T2CON.
; Select Bank 0
; Clear T2CON, Timer2-Disable & Pre/Post Scalers = 1
; Load CCPR1H value in Write register
; Move CCPR1H value into TMR2 to cause Reset of RB3 pin
Software License Agreement
PIC16C712/716
Note:
Work around
There is no way to tristate the output on pin RB3 in
the Compare or PWM mode. However, there are
steps you can do in firmware to stop the RB3 pin
from changing and leave it in a known state.
Examples are shown below.
The TCCP bit of the TRISCCP register
functions as described in Figure 7-2 of the
Device Data Sheet, when using the
MPLAB
®
ICE 2000 in-circuit emulator
DS80072D-page 1

Related parts for PIC16C71-04I/P

PIC16C71-04I/P Summary of contents

Page 1

... The problem here will be addressed in future revisions of the PIC16C712/716 silicon. 1. Module: CCP When using the PIC16C712/716 in the Compare or PWM mode, the TCCP bit of the TRISCCP register will not tristate the output on pin RB3, as described in Figure 7-2 of the Device Data Sheet. The TCCP bit of the TRISCCP register has no effect on the output of pin RB3 ...

Page 2

... PIC16C712/716 Assembly Code To Start PWM Once Stopped: PWMrestart bcf STATUS,RP0 ; Select Bank 0 movlw T2CONVAL ; Load T2CON value in ‘w’ register - USER RESPONSIBLE FOR ; SUPPLYING THE CORRECT T2CON VALUE. movwf T2CON ; Initialize T2CON enabling scalers and Timer2 return Code Example 1B: ;*********************************************************************** ...

Page 3

... Move CCPR1H value into TMR2 to cause Reset of RB3 pin return Assembly Code To Start PWM Once Stopped: PWMrestart bcf STATUS,RP0 ; Select Bank 0 movf T2CONSAV,W ; Move T2CONSAV Value to ‘w’ register movwf T2CON ; Restore T2CON register value return  2003 Microchip Technology Inc. PIC16C712/716 DS80072D-page 3 ...

Page 4

... PIC16C712/716 Code Example 2B: ;*********************************************************************** ; Call these routines to turn the CCP Mode off or on and ensure RB3 is a known ; Input or Output value when CCP Mode is off CCPstop - First sets RB3 to an Input or an Output. If RB3 is an Output then it’s state ; is made either High or Low. The CCP is then Disabled. ...

Page 5

... T1CON,TMR1ON bsf T1CON,NOT_T1SYNC return  2003 Microchip Technology Inc. PIC16C712/716 Timer1 synchronization will start, effectively stop- ping Timer1, one Q period after the Synchronous mode is enabled, or one Q period later than would have been realized by simply clearing the TMR1ON bit. One additional count, in excess of ...

Page 6

... PIC16C712/716 Clarifications/Corrections to the Data Sheet: In the Device Data Sheet (DS41106A), the following clarifications and corrections should be noted. 1. The following register and bit names need the following corrections: Page Where 10 Figure 2-3, Address 0Fh 10 Figure 2-3, Address 11h 41 Table 7-2, Address 07h, bit 0 ...

Page 7

... Figure 12-1, page 76, of the Device Data Sheet should show the following valid region of operation: FIGURE 12-5: PIC16C712/716 VOLTAGE-FREQUENCY GRAPH, -40°C ≤ T 6.0 5.5 5.0 4 (Volts) 4.0 3.5 3.0 2.5 2 Note 1: The shaded region indicates the permissible combinations of voltage and frequency. ...

Page 8

... PIC16C712/716 5. Module: Packaging The package information contained in the data sheet is incorrect. Please refer to the following tables for correct package data. 18-Lead Plastic Dual In-line (P) – 300 mil (PDIP β eB Dimension Limits Number of Pins Pitch Top to Seating Plane Molded Package Thickness Base to Seating Plane ...

Page 9

... L .016 .033 .050 φ .009 .011 .012 B .014 .017 .020 α β PIC16C712/716 α A2 MILLIMETERS MIN NOM MAX 18 1.27 2.36 2.50 2.64 2.24 2.31 2.39 0.10 0.20 0.30 10.01 10.34 10.67 7.39 7.49 7.59 11.33 11.53 11.73 0.25 ...

Page 10

... PIC16C712/716 18-Lead Ceramic Dual In-line with Window (JW) – 300 mil (CERDIP Dimension Limits Number of Pins Pitch Top to Seating Plane Ceramic Package Height Standoff Shoulder to Shoulder Width Ceramic Pkg. Width Overall Length Tip to Seating Plane Lead Thickness Upper Lead Width Lower Lead Width Overall Row Spacing § ...

Page 11

... Mold Draft Angle Bottom * Controlling Parameter § Significant Characteristic Notes: Dimensions D and E1 do not include mold flash or protrusions. Mold flash or protrusions shall not exceed .010” (0.254mm) per side. JEDEC Equivalent: MO-150 Drawing No. C04-072  2003 Microchip Technology Inc. PIC16C712/716 φ Units ...

Page 12

... PIC16C712/716 APPENDIX A: REVISION HISTORY Rev. A Document (6/2000) First revision of this document. Rev. B Document (4/2001) Added issue 1 (CCP), page 1, and issue 2 (Timer1), page 5. Rev. C Document (1/2002) Under Clarifications/Corrections to the Data Sheet, Item 5 (SSOP), on page 8 was added. Rev. D Document (3/2003) Under Clarifications/Corrections to the Data Sheet, Item 5, Packaging: correct package data was added ...

Page 13

... MPSIM, PICC, PICkit, PICDEM, PICDEM.net, PowerCal, PowerInfo, PowerMate, PowerTool, rfLAB, rfPIC, Select Mode, SmartSensor, SmartShunt, SmartTel and Total Endurance are trademarks of Microchip Technology Incorporated in the U.S.A. and other countries. Serialized Quick Turn Programming (SQTP service mark of Microchip Technology Incorporated in the U.S.A. ...

Page 14

... Korea Microchip Technology Korea 168-1, Youngbo Bldg. 3 Floor Samsung-Dong, Kangnam-Ku Seoul, Korea 135-882 Tel: 82-2-554-7200 Fax: 82-2-558-5934 Singapore Microchip Technology Singapore Pte Ltd. 200 Middle Road #07-02 Prime Centre Singapore, 188980 Tel: 65-6334-8870 Fax: 65-6334-8850 Taiwan Microchip Technology (Barbados) Inc., Taiwan Branch 11F-3, No ...

Related keywords