PIC18F2x2, 4x2 Rev B5 Errata Datasheet by Microchip Technology

View All Related Products | Download PDF Datasheet
‘MICROCHIP P|C1 8FXX2 Work around Work around Date Codes that pertain to this issue: Date Codes that pertain to this issue:
© 2005 Microchip Technology Inc. DS80150D-page 1
PIC18FXX2
The PIC18FXX2 Rev. B5 parts you have received con-
form functionally to the Device Data Sheet
(DS39564B), except for the anomalies described
below.
All the issues listed here will be addressed in future
revisions of the PIC18FXX2 silicon.
The following silicon errata apply only to
PIC18FXX2 devices with these Device/Revision
IDs:
1. Module: Program Memory
Data corruption may occur during a table write
operation if a peripheral interrupt also occurs. This
happens only when the interrupt enable bit (PIE or
INTCON register) for the corresponding interrupt
has also been set.
Work around
Before executing any table write instructions, dis-
able ALL peripheral interrupts. This is best done by
clearing all interrupt enable bits in the three Inter-
rupt Control registers (INTCON, INTCON2 and
INTCON3) and both Peripheral Interrupt Enable
registers (PIE1 and PIE2). After the table write is
complete, restore all INTCON and PIE registers to
their pre-instruction state.
Date Codes that pertain to this issue:
All engineering and production devices.
2. Module: Data EEPROM
When reading the data EEPROM, the contents of
the EEDATA register may become corrupted in the
second instruction cycle after the RD bit
(EECON1<0>) is set. The actual contents of the
EEPROM remains unaffected.
Work around
To ensure the integrity of the contents of EEDATA,
the register must be read in the instruction imme-
diately following the setting of the RD bit. Use the
MOVF or MOVFF instructions to do this (see
Example 1).
Additionally, all interrupts must be disabled prior to
the read instruction sequence. Interruptions of the
sequence may have the same result of altering the
contents of EEDATA.
EXAMPLE 1: SUGGESTED SEQUENCE
FOR READING EEDATA
Date Codes that pertain to this issue:
All engineering and production devices.
Part Number Device ID Revision ID
PIC18F242 00 0100 100 00110
PIC18F252 00 0100 000 00110
PIC18F442 00 0100 101 00110
PIC18F452 00 0100 001 00110
The Device IDs (DEVID1 and DEVID2) are located at
addresses 3FFFFEh:3FFFFFh in the device’s
configuration space. They are shown in hexadecimal
in the format “DEVID2 DEVID1”.
BCF INTCON,GIEH ;disable interrupts
;if using interrupts
BSF EECON1,RD ;start the read operation
MOVF EEDATA,W ;move the data out of
;EEDATA
BSF INTCON,GIEH ;enable interrupts
;if using interrupts
PIC18FXX2 Rev. B5 Silicon/Data Sheet Errata
Work around Work around Date Codes that pert to this issue: Date Codes that pertain to this Issue: Work around Date Codes that pert to this issue:
PIC18FXX2
DS80150D-page 2 © 2005 Microchip Technology Inc.
3. Module: Interrupts
Under certain conditions, the use of dual priority
interrupts may cause a program instruction to be
skipped entirely. This has only been observed
when both of the following apply:
Both high and low interrupts are enabled, and
A high priority asynchronous interrupt occurs in
the following cycle after any low priority
interrupt.
The event causes the stack to get pushed twice,
and will eventually result in an overflow.
Work around
Two possible solutions are presented. Other
solutions may exist.
1. Enable only high priority interrupts for all
sources, both synchronous and asynchronous.
2. If it is necessary to use both high and low
interrupt priorities:
Assign asynchronous interrupts as low
priority only.
Assign synchronous interrupts to both high
and low priority, as needed.
Date Codes that pertain to this issue:
All engineering and production devices.
4. Module: Core (Program Memory Space)
Performing table read operations above the user
program memory space (addresses over
1FFFFFh) may yield erroneous results at the
extreme low end of the device’s rated temperature
range (-40°C).
This applies specifically to addresses above
1FFFFFh, including the user ID locations
(200000h-200007h), the configuration bytes
(300000h-30000Dh), and the device ID locations
(3FFFFEh and 3FFFFFh). User program memory
is unaffected.
Work around
Three possible work arounds are presented. Other
solutions may exist.
1. Do not perform table read operations on areas
above the user memory space at -40°C.
2. Insert NOP instructions (specifically, literal
FFFFh) around any table read instructions.
The suggested optimal number is 4 instruc-
tions before and 8 instructions after each table
read. This may vary depending upon the
particular application, and should be optimized
by the user.
Date Codes that pertain to this issue:
All engineering and production devices.
5. Module: Data EEPROM
When reading the data EEPROM, the contents of
the EEDATA register may be corrupted if the RD
bit (EECON1<0>) is set immediately following a
write to the address byte (EEADR). The actual
contents of the data EEPROM remain unaffected.
Work around
Do not set EEADR immediately before the
execution of a read. Write to EEADR at least one
instruction cycle before setting the RD bit. The
instruction between the write to EEADR and the
read can be any valid instruction, including a NOP.
Date Codes that pertain to this issue:
All engineering and production devices.
Note: This does not apply to the INT0 (external)
interrupt, as it is always configured as a
high priority interrupt.
Work around Work around Date Codes that pert to this issue: Work around Date Codes that per to this Issue:
© 2005 Microchip Technology Inc. DS80150D-page 3
PIC18FXX2
6. Module: MSSP (All I2C™ and SPI™
Modes)
The Buffer Full (BF) flag bit of the SSPSTAT regis-
ter (SSPSTAT<0>) may be inadvertently cleared
even when the SSPBUF register has not been
read. This will occur only when the following two
conditions occur simultaneously:
The four Least Significant bits of the BSR
register are equal to 0Fh (BSR<3:0> = 1111)
and
Any instruction that contains C9h in its 8 Least
Significant bits (i.e., register file addresses,
literal data, address offsets, etc.) is executed.
Work around
All work arounds will involve setting the contents of
BSR<3:0> to some value other than 0Fh.
In addition to those proposed below, other
solutions may exist.
1. When developing or modifying code, keep
these guidelines in mind:
Assign 12-bit addresses to all variables.
This allows the assembler to know when
Access Banking can be used.
Do not set the BSR to point to Bank 15
(BSR = 0Fh).
Allow the assembler to manipulate the
access bit present in most instructions.
Accessing the SFRs in Bank 15 will be done
through the Access Bank. Continue to use
the BSR to select all GPR Banks.
2. If accessing a part of Bank 15 is required and
the use of Access Banking is not possible,
consider using indirect addressing.
3. If pointing the BSR to Bank 15 is unavoidable,
review the absolute file listing. Verify that no
instructions contain C9h in the 8 Least
Significant bits while the BSR points to Bank 15
(BSR = 0Fh).
Date Codes that pertain to this issue:
All engineering and production devices.
7. Module: MSSP (SPI, Slave Mode)
In its current implementation, the SS (Slave
Select) control signal generated by an external
master processor may not be successfully recog-
nized by the PIC® microcontroller operating in
Slave Select mode (SSPM3:SSPM0 = 0100). In
particular, it has been observed that faster transi-
tions (those with shorter fall-times) are more likely
to be missed than than slower transitions.
Work around
Insert a series resistor between the source of the
SS signal and the corresponding SS input line of
the microcontroller. The value of the resistor is
dependent on both the application systems
characteristics and process variations between
microcontrollers. Experimentation and thorough
testing is encouraged.
This is a recommended solution. Others may exist.
Date Codes that pertain to this issue:
All engineering and production devices.
8. Module: Core (Instruction Set)
The Decimal Adjust W register instruction, DAW,
may improperly clear the Carry bit (STATUS<0>)
when executed.
Work around
Test the Carry bit state before executing the DAW
instruction. If the Carry bit is set, increment the
next higher byte to be added using an instruction
such as INCFSZ (this instruction does not affect
any Status flags, and will not overflow a BCD nib-
ble). After the DAW instruction has been executed,
process the Carry bit normally (see Example 2).
EXAMPLE 2: PROCESSING THE CARRY
BIT DURING BCD ADDITIONS
MOVLW 0x80 ; .80 (BCD)
ADDLW 0x80 ; .80 (BCD)
BTFSC STATUS,C ; test C
INCFSZ byte2 ; inc next higher LSB
DAW
BTFSC STATUS,C ; test C
INCFSZ byte2 ; inc next higher LSB
This is repeated for each DAW instruction.
Work around Dale Codes that per to t sue: Work around Date Codes that per! to this issue:
PIC18FXX2
DS80150D-page 4 © 2005 Microchip Technology Inc.
9. Module: Timer1 Oscillator
After the system clock source for the microcontrol-
ler is switched from the primary oscillator to the
Timer1 oscillator, an increase in system current
consumption may occur.
Work around
None
Date Codes that pertain to this issue:
All engineering and production devices.
10. Module: Reset
It has been observed that in certain Reset condi-
tions, including power-up, the first GOTO instruction
at address 0x0000 may not be executed. This
occurrence is rare and affects very few applications.
To determine if your system is affected, test a
statistically significant number of applications across
the operating temperature, voltage and frequency
ranges of the application. Affected systems will
repeatably fail normal testing. Systems not affected
will continue to not be affected over time.
Work around
Insert a NOP instruction at address 0x0000.
Date Codes that pertain to this issue:
All engineering and production devices.
u 259 u 409 59 u 409 59 u 259 u 409 u 409 u 259 u 409 59 u 409 59 u 259 u 409 u 409
© 2005 Microchip Technology Inc. DS80150D-page 5
PIC18FXX2
Clarifications/Corrections to the
Data Sheet:
In the Device Data Sheet (DS39564B), the following
clarifications and corrections should be noted.
1. Module: DC Characteristics
Some of the maximum values for parameters D022A
and D022B shown in Section 22.1 “DC Characteris-
tics” of the Device Data Sheet have changed (modified
text in bold):
22.1 DC Characteristics: PIC18FXX2 (Industrial, Extended)
PIC18LFXX2 (Industrial)
PIC18LFXX2
(Industrial)
Standard Operating Conditions (unless otherwise stated)
Operating temperature -40°C TA +85°C for industrial
PIC18FXX2
(Industrial, Extended)
Standard Operating Conditions (unless otherwise stated)
Operating temperature -40°C TA +85°C for industrial
-40°C TA +125°C for extended
Param
No. Symbol Characteristic Min Typ Max Units Conditions
Module Differential Current
D022A ΔIBOR Brown-out Reset
PIC18LFXX2
29
29
33
40
45
50
μA
μA
μA
VDD = 2.0V, +25°C
VDD = 2.0V, -40°C to +85°C
VDD = 4.2V, -40°C to +85°C
D022A Brown-out Reset
PIC18FXX2
36
36
36
45
50
65
μA
μA
μA
VDD = 4.2V, +25°C
VDD = 4.2V, -40°C to +85°C
VDD = 4.2V, -40°C to +125°C
D022B ΔILVD Low Voltage Detect
PIC18LFXX2
29
29
33
40
45
50
μA
μA
μA
VDD = 2.0V, +25°C
VDD = 2.0V, -40°C to +85°C
VDD = 4.2V, -40°C to +85°C
D022B Low Voltage Detect
PIC18FXX2
33
33
33
45
50
65
μA
μA
μA
VDD = 4.2V, +25°C
VDD = 4.2V, -40°C to +85°C
VDD = 4.2V, -40°C to +125°C
Legend: Shading of rows is to assist in readability of the table.
Note 1: This is the limit to which VDD can be lowered in Sleep mode, or during a device Reset, without losing RAM
data.
2: The supply current is mainly a function of the operating voltage and frequency. Other factors, such as I/O
pin loading and switching rate, oscillator type, internal code execution pattern and temperature, also have
an impact on the current consumption.
The test conditions for all IDD measurements in active Operation mode are:
OSC1 = external square wave, from rail-to-rail; all I/O pins tri-stated, pulled to VDD
MCLR = VDD; WDT enabled/disabled as specified.
3: The power-down current in Sleep mode does not depend on the oscillator type. Power-down current is
measured with the part in Sleep mode, with all I/O pins in hi-impedance state and tied to VDD or VSS, and all
features that add delta current disabled (such as WDT, Timer1 Oscillator, BOR,...).
4: For RC osc configuration, current through REXT is not included. The current through the resistor can be
estimated by the formula Ir = VDD/2REXT (mA) with REXT in kΩ.
IIHHIIIII IIIIHHHI IIHIHIII E ._. RE2/AN7/E <—- rehans/m="" ._.="" gamma/e="">
PIC18FXX2
DS80150D-page 6 © 2005 Microchip Technology Inc.
2. Module: Packaging (Pinout and Product
Identification)
PIC18F442 and PICF452 devices are now offered
in 44-pin, near chip-scale micro lead frame
packages (commonly known as “QFN”). This
packaging type has been added to the product line
since the latest revision of the Device Data Sheet.
The addition of this option requires the following
additions to the Device Data Sheet (DS39564B).
The referenced figures and tables follow this text.
1. The “Pin Diagrams” on pages 2-3 of the Data
Sheet are amended with the addition of the
44-pin QFN pinout, shown in Figure 1.
2. Table 1-3 of Section 1.0 “Overview” is
replaced with an updated version which adds a
column for QFN pin assignments. A row is also
added for previously unlisted NC pins. All new
information is indicated in bold.
3. Section 24.1 “Package Marking Information
is amended to include a marking template and
example for 44-pin QFN devices. These are
shown in Figure 2.
4. Section 24.2 “Package Details” is amended to
include the mechanical drawing of the 44-pin
QFN package following the existing drawings,
shown in Figure 3.
5. In the “PIC18F442/452 Product Identification
System” (page 329), the “Package” options are
amended to include the new line item:
ML = QFN
For the sake of completeness, it is also noted that
the package designation “MLF” is now replaced by
“QFN” in all occurrences throughout the Device
Data Sheet. “MLF” should be considered an
obsoleted term.
FIGURE 1: PINOUT DIAGRAM FOR PIC18F442/452, 44-PIN QFN PACKAGE
FIGURE 2: PACKAGE MARKING TEMPLATE FOR PIC18F442/452, 44-PIN QFN
10
11
2
3
4
5
6
1
18
19
20
21
22
12
13
14
15
38
8
7
44
43
42
41
40
39
16
17
29
30
31
32
33
23
24
25
26
27
28
36
34
35
9
PIC18F442
37
RA3/AN3/VREF+
RA2/AN2/VREF-
RA1/AN1
RA0/AN0
MCLR/VPP
RB3/CCP2*
RB7/PGD
RB6/PGC
RB5/PGM
RB4
NC
RC6/TX/CK
RC5/SDO
RC4/SDI/SDA
RD3/PSP3
RD2/PSP2
RD1/PSP1
RD0/PSP0
RC3/SCK/SCL
RC2/CCP1
RC1/T1OSI/CCP2
RC0/T13CKI
OSC2/CLKO/RA6
OSC1/CLKI
VSS
VSS
VDD
VDD
RE2/AN7/CS
RE1/AN6/WR
RE0/AN5/RD
RA5/AN4/SS/LVDIN
RA4/T0CKI
RC7/RX/DT
RD4/PSP4
RD5/PSP5
RD6/PSP6
RD7/PSP7
VSS
VDD
VDD
RB0/INT0
RB1/INT1
RB2/INT2
QFN
PIC18F452
XXXXXXXXXX
44-Lead QFN
XXXXXXXXXX
XXXXXXXXXX
YYWWNNN
PIC18F442
Example
-I/ML
0510017
© 2005 Microchip Technology Inc. DS80150D-page 7
PIC18FXX2
TABLE 1-3: PIC18F442/452 PINOUT I/O DESCRIPTIONS
Pin Name
Pin Number Pin
Type
Buffer
Type Description
DIP PLCC QFN TQFP
MCLR/VPP
MCLR
VPP
1218 18
I
I
ST
ST
Master Clear (input) or High-Voltage ICSP™
programming enable pin.
Master Clear (Reset) input. This pin is an active
low Reset to the device.
High-Voltage ICSP programming enable pin.
NC 32 These pins should be left unconnected.
OSC1/CLKI
OSC1
CLKI
13 14 33 30
I
I
ST
CMOS
Oscillator crystal or external clock input.
Oscillator crystal input or external clock source
input. ST buffer when configured in RC mode,
CMOS otherwise.
External clock source input. Always associated
with pin function OSC1. (See related
OSC1/CLKI, OSC2/CLKO pins.)
OSC2/CLKO/RA6
OSC2
CLKO
RA6
14 15 31
O
O
I/O
TTL
Oscillator crystal or clock output.
Oscillator crystal output. Connects to crystal
or resonator in Crystal Oscillator mode.
In RC mode, OSC2 pin outputs CLKO, which
has 1/4 the frequency of OSC1 and denotes the
instruction cycle rate.
General Purpose I/O pin.
PORTA is a bidirectional I/O port.
RA0/AN0
RA0
AN0
2319 19
I/O
I
TTL
Analog
Digital I/O.
Analog input 0.
RA1/AN1
RA1
AN1
3420 20
I/O
I
TTL
Analog
Digital I/O.
Analog input 1.
RA2/AN2/VREF-
RA2
AN2
VREF-
4521 21
I/O
I
I
TTL
Analog
Analog
Digital I/O.
Analog input 2.
A/D Reference Voltage (Low) input.
RA3/AN3/VREF+
RA3
AN3
VREF+
5622 22
I/O
I
I
TTL
Analog
Analog
Digital I/O.
Analog input 3.
A/D Reference Voltage (High) input.
RA4/T0CKI
RA4
T0CKI
6723 23
I/O
I
ST/OD
ST
Digital I/O. Open-drain when configured as output.
Timer0 external clock input.
RA5/AN4/SS/LVDIN
RA5
AN4
SS
LVDIN
7824 24
I/O
I
I
I
TTL
Analog
ST
Analog
Digital I/O.
Analog input 4.
SPI™ Slave Select input.
Low-Voltage Detect input.
RA6 (See the OSC2/CLKO/RA6 pin.)
Legend: TTL = TTL compatible input CMOS = CMOS compatible input or output
ST = Schmitt Trigger input with CMOS levels I = Input
O = Output P = Power
OD = Open Drain (no P diode to VDD)
PIC18FXX2
DS80150D-page 8 © 2005 Microchip Technology Inc.
PORTB is a bidirectional I/O port. PORTB can be
software programmed for internal weak pull-ups on
all inputs.
RB0/INT0
RB0
INT0
33 36 98
I/O
I
TTL
ST
Digital I/O.
External Interrupt 0.
RB1/INT1
RB1
INT1
34 37 10 9
I/O
I
TTL
ST
Digital I/O.
External Interrupt 1.
RB2/INT2
RB2
INT2
35 38 11 10
I/O
I
TTL
ST
Digital I/O.
External Interrupt 2.
RB3/CCP2
RB3
CCP2
36 39 12 11
I/O
I/O
TTL
ST
Digital I/O.
Capture2 input, Compare2 output, PWM2 output.
RB4 37 41 14 14 I/O TTL Digital I/O. Interrupt-on-change pin.
RB5/PGM
RB5
PGM
38 42 15 15
I/O
I/O
TTL
ST
Digital I/O. Interrupt-on-change pin.
Low-Voltage ICSP™ programming enable pin.
RB6/PGC
RB6
PGC
39 43 16 16
I/O
I/O
TTL
ST
Digital I/O. Interrupt-on-change pin.
In-Circuit Debugger and ICSP programming
clock pin.
RB7/PGD
RB7
PGD
40 44 17 17
I/O
I/O
TTL
ST
Digital I/O. Interrupt-on-change pin.
In-Circuit Debugger and ICSP programming data
pin.
TABLE 1-3: PIC18F442/452 PINOUT I/O DESCRIPTIONS (CONTINUED)
Pin Name
Pin Number Pin
Type
Buffer
Type Description
DIP PLCC QFN TQFP
Legend: TTL = TTL compatible input CMOS = CMOS compatible input or output
ST = Schmitt Trigger input with CMOS levels I = Input
O = Output P = Power
OD = Open Drain (no P diode to VDD)
© 2005 Microchip Technology Inc. DS80150D-page 9
PIC18FXX2
PORTC is a bidirectional I/O port.
RC0/T1OSO/T1CKI
RC0
T1OSO
T1CKI
15 16 34 32
I/O
O
I
ST
ST
Digital I/O.
Timer1 oscillator output.
Timer1/Timer3 external clock input.
RC1/T1OSI/CCP2
RC1
T1OSI
CCP2
16 18 35 35
I/O
I
I/O
ST
CMOS
ST
Digital I/O.
Timer1 oscillator input.
Capture2 input, Compare2 output,
PWM2 output.
RC2/CCP1
RC2
CCP1
17 19 36 36
I/O
I/O
ST
ST
Digital I/O.
Capture1 input/Compare1 output/
PWM1 output.
RC3/SCK/SCL
RC3
SCK
SCL
18 20 37 37
I/O
I/O
I/O
ST
ST
ST
Digital I/O.
Synchronous serial clock input/output for
SPI™ mode.
Synchronous serial clock input/output for
I2C™ mode.
RC4/SDI/SDA
RC4
SDI
SDA
23 25 42 42
I/O
I
I/O
ST
ST
ST
Digital I/O.
SPI Data In.
I2C Data I/O.
RC5/SDO
RC5
SDO
24 26 43 43
I/O
O
ST
Digital I/O.
SPI Data Out.
RC6/TX/CK
RC6
TX
CK
25 27 44 44
I/O
O
I/O
ST
ST
Digital I/O.
USART Asynchronous Transmit.
USART Synchronous Clock
(see related RX/DT).
RC7/RX/DT
RC7
RX
DT
26 29 11
I/O
I
I/O
ST
ST
ST
Digital I/O.
USART Asynchronous Receive.
USART Synchronous Data
(see related TX/CK).
TABLE 1-3: PIC18F442/452 PINOUT I/O DESCRIPTIONS (CONTINUED)
Pin Name
Pin Number Pin
Type
Buffer
Type Description
DIP PLCC QFN TQFP
Legend: TTL = TTL compatible input CMOS = CMOS compatible input or output
ST = Schmitt Trigger input with CMOS levels I = Input
O = Output P = Power
OD = Open Drain (no P diode to VDD)
PIC18FXX2
DS80150D-page 10 © 2005 Microchip Technology Inc.
PORTD is a bidirectional I/O port, or a Parallel Slave
Port (PSP) for interfacing to a microprocessor port.
These pins have TTL input buffers when PSP mod-
ule is enabled.
RD0/PSP0 19 21 38 38 I/O ST
TTL
Digital I/O.
Parallel Slave Port Data.
RD1/PSP1 20 22 39 39 I/O ST
TTL
Digital I/O.
Parallel Slave Port Data.
RD2/PSP2 21 23 40 40 I/O ST
TTL
Digital I/O.
Parallel Slave Port Data.
RD3/PSP3 22 24 41 41 I/O ST
TTL
Digital I/O.
Parallel Slave Port Data.
RD4/PSP4 27 30 22 I/O ST
TTL
Digital I/O.
Parallel Slave Port Data.
RD5/PSP5 28 31 33 I/O ST
TTL
Digital I/O.
Parallel Slave Port Data.
RD6/PSP6 29 32 44 I/O ST
TTL
Digital I/O.
Parallel Slave Port Data.
RD7/PSP7 30 33 55 I/O ST
TTL
Digital I/O.
Parallel Slave Port Data.
PORTE is a bidirectional I/O port.
RE0/RD/AN5
RE0
RD
AN5
8925 25 I/O
ST
TTL
Analog
Digital I/O.
Read control for parallel slave port
(see also WR and CS pins).
Analog input 5.
RE1/WR/AN6
RE1
WR
AN6
91026 26 I/O
ST
TTL
Analog
Digital I/O.
Write control for parallel slave port
(see CS and RD pins).
Analog input 6.
RE2/CS/AN7
RE2
CS
AN7
10 11 27 27 I/O
ST
TTL
Analog
Digital I/O.
Chip Select control for parallel slave port
(see related RD and WR).
Analog input 7.
VSS 12,
31
13, 34 6, 30,
31
6, 29 P Ground reference for logic and I/O pins.
VDD 11,
32
12, 35 7, 8,
28, 29
7, 28 P Positive supply for logic and I/O pins.
NC — 1, 17,
28
13 12, 13,
33, 34
These pins are not internally connected. They
should be left unconnected.
TABLE 1-3: PIC18F442/452 PINOUT I/O DESCRIPTIONS (CONTINUED)
Pin Name
Pin Number Pin
Type
Buffer
Type Description
DIP PLCC QFN TQFP
Legend: TTL = TTL compatible input CMOS = CMOS compatible input or output
ST = Schmitt Trigger input with CMOS levels I = Input
O = Output P = Power
OD = Open Drain (no P diode to VDD)
TOP V‘EW AI LLI—I—I—I—I—I—I—I—I—I—L *7 BOWOM VIEW AZ Umu mcHEs MILUMETERS’ Dwmensmn mm MIN NUM MAX MIN NUM MAX Number 0! comm n 44 44 mm P .025 55c 0,55 55c Oven“ Hewghl A ms 039 n 90 mo Stando" m 000 am no: 0 0 oz 0.0: Base Thltkness 4: ma REF 0,25 REF Oven“ wmh : Exposed Pad wmm E2 245 ,m 274 5.25 5 EU 5.9: Oven“ Lenglh D 315 Elm Exposed Pad Length D2 245 ,m 274 5.25 5 EU 5.9: Conrad wmm a 0011 ,m 3 m1 020 n 33 0.15 (onlaalenglh L m4 ms 019 0.25 04a 0.4a ’(onuollmg Paramexer Nules memg No (nuns a 2005 Microchip Technology Inc.
© 2005 Microchip Technology Inc. DS80150D-page 11
PIC18FXX2
FIGURE 3: 44-PIN QFN PACKAGE
Contact Width
*Controlling Parameter
Drawing No. C04-103
Notes:
B .008 .013 .013 0.20 0.33 0.35
Pitch
Number of Contacts
Overall Width
Standoff
Overall Length
Overall Height
MAX
Units
Dimension Limits
A1
D
E
n
p
A
.000
INCHES
.026 BSC
MIN
44
NOM MAX
.002 0
MILLIMETERS*
.039
MIN
44
0.65 BSC
NOM
0.05
1.00
.010 REFBase Thickness A3 0.25 REF
0.90.035
.001 0.02
.315 8.00
Contact Length L .014 .016 .019 0.35 0.40 0.48
E2
D2
Exposed Pad Width
Exposed Pad Length .246 .268 .274 6.25 6.80 6.95
.246 .268 .274 6.25 6.80 6.95
D2
D
A1
A3
A
TOP VIEW
n
1
L
E2
BOTTOM VIEW
B
E
2
PAD
METAL
EXPOSED
p
PIN 1
INDEX ON
EXPOSED PAD
TOP MARKING
INDEX ON
OPTIONAL PIN 1
.031 0.80
DETAIL: CONTACT VARIANTS
7.85 8.15.321.309
.309 .315 8.007.85.321 8.15
22
11
1. BSC: Basic Dimension. Theoretically exact value shown without tolerances.
JEDEC equivalent: M0-220
2. REF: Reference Dimension, usually without tolerance, for information purposes only.
See ASME Y14.5M
See ASME Y14.5M
(PROFILE MAY VARY)
Revised 3-14-05
44-Lead Plastic Quad Flat No Lead Package (ML) 8x8 mm Body (QFN)
Rev A Documenl 1/2003 Rev B Documenl 3/2003 Rev C Documenl 7/2003 Rev D Documenl 05/2005
PIC18FXX2
DS80150D-page 12 © 2005 Microchip Technology Inc.
REVISION HISTORY
Rev A Document (1/2003)
First revision of this document, silicon issues 1 (Pro-
gram Memory), 2 (Data EEPROM), 3 (Interrupts), and
4 (Core - Program Memory Space), and data sheet
clarification 1 (DC Characteristics).
Rev B Document (3/2003)
Added silicon issues 6, 7 and 8 (MSSP and Core -
Instruction Set) and data sheet clarification 2
(Packaging - Pinout and Product Identification).
Rev C Document (7/2003)
Added silicon issue 9 (Timer1 Oscillator).
Rev D Document (05/2005)
Added silicon issue 10 (Reset).
QUALITY MANAGEMENT SYSTEM CERTIFIED BY DNV = ISO/TS 16949:2002 =
© 2005 Microchip Technology Inc. DS80150D-page 13
Information contained in this publication regarding device
applications and the like is provided only for your convenience
and may be superseded by updates. It is your responsibility to
ensure that your application meets with your specifications.
MICROCHIP MAKES NO REPRESENTATIONS OR WAR-
RANTIES OF ANY KIND WHETHER EXPRESS OR IMPLIED,
WRITTEN OR ORAL, STATUTORY OR OTHERWISE,
RELATED TO THE INFORMATION, INCLUDING BUT NOT
LIMITED TO ITS CONDITION, QUALITY, PERFORMANCE,
MERCHANTABILITY OR FITNESS FOR PURPOSE.
Microchip disclaims all liability arising from this information and
its use. Use of Microchip’s products as critical components in
life support systems is not authorized except with express
written approval by Microchip. No licenses are conveyed,
implicitly or otherwise, under any Microchip intellectual property
rights.
Trademarks
The Microchip name and logo, the Microchip logo, Accuron,
dsPIC, KEELOQ, microID, MPLAB, PIC, PICmicro, PICSTART,
PRO MATE, PowerSmart, rfPIC, and SmartShunt are
registered trademarks of Microchip Technology Incorporated
in the U.S.A. and other countries.
AmpLab, FilterLab, Migratable Memory, MXDEV, MXLAB,
PICMASTER, SEEVAL, SmartSensor and The Embedded
Control Solutions Company are registered trademarks of
Microchip Technology Incorporated in the U.S.A.
Analog-for-the-Digital Age, Application Maestro, dsPICDEM,
dsPICDEM.net, dsPICworks, ECAN, ECONOMONITOR,
FanSense, FlexROM, fuzzyLAB, In-Circuit Serial
Programming, ICSP, ICEPIC, Linear Active Thermistor,
MPASM, MPLIB, MPLINK, MPSIM, PICkit, PICDEM,
PICDEM.net, PICLAB, PICtail, PowerCal, PowerInfo,
PowerMate, PowerTool, rfLAB, rfPICDEM, Select Mode,
Smart Serial, SmartTel, Total Endurance and WiperLock are
trademarks of Microchip Technology Incorporated in the
U.S.A. and other countries.
SQTP is a service mark of Microchip Technology Incorporated
in the U.S.A.
All other trademarks mentioned herein are property of their
respective companies.
© 2005, Microchip Technology Incorporated, Printed in the
U.S.A., All Rights Reserved.
Printed on recycled paper.
Note the following details of the code protection feature on Microchip devices:
Microchip products meet the specification contained in their particular Microchip Data Sheet.
Microchip believes that its family of products is one of the most secure families of its kind on the market today, when used in the
intended manner and under normal conditions.
There are dishonest and possibly illegal methods used to breach the code protection feature. All of these methods, to our
knowledge, require using the Microchip products in a manner outside the operating specifications contained in Microchip’s Data
Sheets. Most likely, the person doing so is engaged in theft of intellectual property.
Microchip is willing to work with the customer who is concerned about the integrity of their code.
Neither Microchip nor any other semiconductor manufacturer can guarantee the security of their code. Code protection does not
mean that we are guaranteeing the product as “unbreakable.
Code protection is constantly evolving. We at Microchip are committed to continuously improving the code protection features of our
products. Attempts to break Microchip’s code protection feature may be a violation of the Digital Millennium Copyright Act. If such acts
allow unauthorized access to your software or other copyrighted work, you may have a right to sue for relief under that Act.
Microchip received ISO/TS-16949:2002 quality system certification for
its worldwide headquarters, design and wafer fabrication facilities in
Chandler and Tempe, Arizona and Mountain View, California in
October 2003. The Company’s quality system processes and
procedures are for its PICmicro
®
8-bit MCUs, K
EE
L
OQ
®
code hopping
devices, Serial EEPROMs, microperipherals, nonvolatile memory and
analog products. In addition, Microchip’s quality system for the design
and manufacture of development systems is ISO 9001:2000 certified.
Q ‘MICROCHIP
DS80150D-page 14 © 2005 Microchip Technology Inc.
AMERICAS
Corporate Office
2355 West Chandler Blvd.
Chandler, AZ 85224-6199
Tel: 480-792-7200
Fax: 480-792-7277
Technical Support:
http://support.microchip.com
Web Address:
www.microchip.com
Atlanta
Alpharetta, GA
Tel: 770-640-0034
Fax: 770-640-0307
Boston
Westborough, MA
Tel: 774-760-0087
Fax: 774-760-0088
Chicago
Itasca, IL
Tel: 630-285-0071
Fax: 630-285-0075
Dallas
Addison, TX
Tel: 972-818-7423
Fax: 972-818-2924
Detroit
Farmington Hills, MI
Tel: 248-538-2250
Fax: 248-538-2260
Kokomo
Kokomo, IN
Tel: 765-864-8360
Fax: 765-864-8387
Los Angeles
Mission Viejo, CA
Tel: 949-462-9523
Fax: 949-462-9608
San Jose
Mountain View, CA
Tel: 650-215-1444
Fax: 650-961-0286
Toronto
Mississauga, Ontario,
Canada
Tel: 905-673-0699
Fax: 905-673-6509
ASIA/PACIFIC
Australia - Sydney
Tel: 61-2-9868-6733
Fax: 61-2-9868-6755
China - Beijing
Tel: 86-10-8528-2100
Fax: 86-10-8528-2104
China - Chengdu
Tel: 86-28-8676-6200
Fax: 86-28-8676-6599
China - Fuzhou
Tel: 86-591-8750-3506
Fax: 86-591-8750-3521
China - Hong Kong SAR
Tel: 852-2401-1200
Fax: 852-2401-3431
China - Shanghai
Tel: 86-21-5407-5533
Fax: 86-21-5407-5066
China - Shenyang
Tel: 86-24-2334-2829
Fax: 86-24-2334-2393
China - Shenzhen
Tel: 86-755-8203-2660
Fax: 86-755-8203-1760
China - Shunde
Tel: 86-757-2839-5507
Fax: 86-757-2839-5571
China - Qingdao
Tel: 86-532-502-7355
Fax: 86-532-502-7205
ASIA/PACIFIC
India - Bangalore
Tel: 91-80-2229-0061
Fax: 91-80-2229-0062
India - New Delhi
Tel: 91-11-5160-8631
Fax: 91-11-5160-8632
Japan - Kanagawa
Tel: 81-45-471- 6166
Fax: 81-45-471-6122
Korea - Seoul
Tel: 82-2-554-7200
Fax: 82-2-558-5932 or
82-2-558-5934
Malaysia - Penang
Tel:011-604-646-8870
Fax:011-604-646-5086
Philippines - Manila
Tel: 011-632-634-9065
Fax: 011-632-634-9069
Singapore
Tel: 65-6334-8870
Fax: 65-6334-8850
Taiwan - Kaohsiung
Tel: 886-7-536-4818
Fax: 886-7-536-4803
Taiwan - Taipei
Tel: 886-2-2500-6610
Fax: 886-2-2508-0102
Taiwan - Hsinchu
Tel: 886-3-572-9526
Fax: 886-3-572-6459
EUROPE
Austria - Weis
Tel: 43-7242-2244-399
Fax: 43-7242-2244-393
Denmark - Ballerup
Tel: 45-4450-2828
Fax: 45-4485-2829
France - Massy
Tel: 33-1-69-53-63-20
Fax: 33-1-69-30-90-79
Germany - Ismaning
Tel: 49-89-627-144-0
Fax: 49-89-627-144-44
Italy - Milan
Tel: 39-0331-742611
Fax: 39-0331-466781
Netherlands - Drunen
Tel: 31-416-690399
Fax: 31-416-690340
England - Berkshire
Tel: 44-118-921-5869
Fax: 44-118-921-5820
WORLDWIDE SALES AND SERVICE
04/20/05

Products related to this Datasheet

IC MCU 8BIT 32KB FLASH 44TQFP
IC MCU 8BIT 32KB FLASH 44QFN
IC MCU 8BIT 32KB FLASH 44TQFP
IC MCU 8BIT 32KB FLASH 44PLCC
IC MCU 8BIT 32KB FLASH 44TQFP
IC MCU 8BIT 32KB FLASH 28SOIC
IC MCU 8BIT 16KB FLASH 44TQFP
IC MCU 8BIT 32KB FLASH 44TQFP
IC MCU 8BIT 32KB FLASH 44TQFP
IC MCU 8BIT 32KB FLASH 28SOIC
IC MCU 8BIT 16KB FLASH 28SOIC
IC MCU 8BIT 32KB FLASH 44PLCC
IC MCU 8BIT 16KB FLASH 44TQFP
IC MCU 8BIT 32KB FLASH 44PLCC
IC MCU 8BIT 32KB FLASH 40DIP
IC MCU 8BIT 32KB FLASH 28SDIP
IC MCU 8BIT 16KB FLASH 28SDIP
IC MCU 8BIT 32KB FLASH 28SDIP
IC MCU 8BIT 32KB FLASH 28SOIC
IC MCU 8BIT 16KB FLASH 28SOIC
IC MCU 8BIT 16KB FLASH 44PLCC
IC MCU 8BIT 32KB FLASH 44TQFP
IC MCU 8BIT 32KB FLASH 28SOIC
IC MCU 8BIT 32KB FLASH 40DIP
IC MCU 8BIT 16KB FLASH 44TQFP
IC MCU 8BIT 32KB FLASH 44PLCC
IC MCU 8BIT 16KB FLASH 40DIP
IC MCU 8BIT 32KB FLASH 44QFN
IC MCU 8BIT 16KB FLASH 28SOIC
IC MCU 8BIT 32KB FLASH 44PLCC