DatasheetQ Logo
Electronic component search and free download site. Transistors,MosFET ,Diode,Integrated circuits

PIC16F689T-I/SO View Datasheet(PDF) - Microchip Technology

Part Name
Description
Manufacturer
PIC16F689T-I/SO Datasheet PDF : 306 Pages
First Prev 121 122 123 124 125 126 127 128 129 130 Next Last
PIC16F631/677/685/687/689/690
10.1.4
READING THE FLASH PROGRAM
MEMORY (PIC16F685/PIC16F689/
PIC16F690)
To read a program memory location, the user must
write the Least and Most Significant address bits to the
EEADR and EEADRH registers, set the EEPGD con-
trol bit of the EECON1 register, and then set control bit
RD. Once the read control bit is set, the program mem-
ory Flash controller will use the second instruction
cycle to read the data. This causes the second instruc-
tion immediately following the “BSF EECON1,RD
instruction to be ignored. The data is available in the
very next cycle, in the EEDAT and EEDATH registers;
therefore, it can be read as two bytes in the following
instructions.
EEDAT and EEDATH registers will hold this value until
another read or until it is written to by the user.
Note 1: The two instructions following a program
memory read are required to be NOPs.
This prevents the user from executing a
two-cycle instruction on the next
instruction after the RD bit is set.
2: If the WR bit is set when EEPGD = 1, it
will be immediately reset to ‘0’ and no
operation will take place.
EXAMPLE 10-3: FLASH PROGRAM READ
BANKSEL EEADR
MOVF MS_PROG_EE_ADDR, W
MOVWF EEADRH
MOVF LS_PROG_EE_ADDR, W
MOVWF EEADR
BANKSEL EECON1
BSF
EECON1, EEPGD
BSF
EECON1, RD
;
NOP
;
;
;MS Byte of Program Address to read
;
;LS Byte of Program Address to read
;
;Point to PROGRAM memory
;EE Read
;First instruction after BSF EECON1,RD executes normally
NOP
;
BANKSEL EEDAT
MOVF EEDAT, W
MOVWF LOWPMBYTE
MOVF EEDATH, W
MOVWF HIGHPMBYTE
BANKSEL 0x00
;Any instructions here are ignored as program
;memory is read in second cycle after BSF EECON1,RD
;
;W = LS Byte of Program Memory
;
;W = MS Byte of Program EEDAT
;
;Bank 0
© 2008 Microchip Technology Inc.
DS41262E-page 123

Share Link: 

datasheetq.com  [ Privacy Policy ]Request Datasheet ] [ Contact Us ]