(Created page with "Category:Starter PIC18F4520 In this tutorial we will discuss how to access the PIC18F4520 internal EEPROM memory to store and retrieve the data. Eeprom is basically used...")
 
 
Line 19: Line 19:
  
 
=Prerequisites=
 
=Prerequisites=
Please check [[PIC Internal Eeprom|this tutorial]] for detailed explanation on PIC16F877A Internal Eeprom.<br><br>
+
Please check [[PIC Internal Eeprom|this tutorial]] for detailed explanation on PIC18F4520 Internal Eeprom.<br><br>
  
 
=Code=
 
=Code=

Latest revision as of 15:27, 10 August 2016


In this tutorial we will discuss how to access the PIC18F4520 internal EEPROM memory to store and retrieve the data. Eeprom is basically used to store the non volatile data which is required to be stored even if there is power loss or controller resets. Pic16f877a Eeprom.png

PIC18F4520 Memories

PIC18F4520 comes with three memories Flash,RAM and EEPROM. Below table shows the memory capacity of PIC18F4520:

Memory Size Description
FLASH 8k-bytes Used to store the programs
RAM 368-bytes Temporary/ScratchPad memory used during program execution.
EEPROM 256-bytes Used to store the non-volatile data across power cycles



Prerequisites

Please check this tutorial for detailed explanation on PIC18F4520 Internal Eeprom.

Code

Below is the program to write the data(A-Z) to eeprom and then read it back.

Pic16f877a EepromOutput.png