please dont rip this site

PIC Microcontoller Memory Method

Internal EEPROM access on 16F87x devices

Sam Linder [SamL at IN-INC.COM] says:

The following routines work for the 16F874/16F877 - not sure about the 16F871.
// **************************************************
// Function Name: Read8BitDataFromEEprom
//
// Description: Read characterization data out of on-board EEPROM
//
// Inputs:
//    eeaddress: 8-bit EEPROM address to read
//
// Outputs:
//    8-bit data stored at EEPROM address
//
unsigned char
Read8BitDataFromEEprom(unsigned char eeaddress)
{
    eeaddress &= 0x7F;

    eeadr = eeaddress;
    eepgd = 0;
    rd = 1;
    return(eedata);

} // end of Read8BitDataFromEEprom()


// **************************************************
// Function Name: Write8BitDataToEEprom
//
// Description: write 8-bit characterization data to on-board EEPROM
//
// Inputs:
//      data_address:  8-bit EEPROM address
//         datavalue:  8-bit data
//
// Outputs: none
//
void
Write8BitDataToEEprom(unsigned char data_address, unsigned char datavalue)
{

    data_address &= 0x7F;

    eeadr = data_address;   // establish address to write to
    eedata = datavalue;     // get data to write
    eepgd = 0;              // set for access to data memory
    wren = 1;               // set eeprom write enable bit
    //gie = 0;

#asm
retry:
    bcf INTCON,GIE          // disable interrupts for write sequence
    btfsc INTCON,GIE        // make sure bit cleared
    goto retry              // (int could have occurred 1/2way thru
instruction)
#endasm

    eecon2 = 0x55;          // required
    eecon2 = 0xAA;          //  write
    wr = 1;                 //   sequence
    gie = 1;                // ok to re-enable interrupts
    do {                    // wait for write to complete
        ; // nothing
    } while(wr);
    wren = 0;               // clear eeprom write enable bit
    eeif = 0;               // clear write complete interrupt flag

} // end of Write8BitDataToEEprom()


Questions:


file: /Techref/microchip/16f87xeeprom.htm, 2KB, , updated: 2003/5/8 13:52, local time: 2024/3/28 01:59, owner: MRL-FAU-IAA,
TOP NEW HELP FIND: 
3.93.59.171:LOG IN

 ©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions?
Please DO link to this page! Digg it! / MAKE!

<A HREF="http://www.massmind.org/Techref/microchip/16f87xeeprom.htm"> PIC Microcontoller Memory Method </A>

After you find an appropriate page, you are invited to your to this massmind site! (posts will be visible only to you before review) Just type a nice message (short messages are blocked as spam) in the box and press the Post button. (HTML welcomed, but not the <A tag: Instead, use the link box to link to another page. A tutorial is available Members can login to post directly, become page editors, and be credited for their posts.


Link? Put it here: 
if you want a response, please enter your email address: 
Attn spammers: All posts are reviewed before being made visible to anyone other than the poster.
Did you find what you needed?

 

Welcome to massmind.org!

 

Welcome to www.massmind.org!

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  .