Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

What is EEPROM and major advantages? #1

Open
mucahitdemir opened this issue May 10, 2022 · 2 comments
Open

What is EEPROM and major advantages? #1

mucahitdemir opened this issue May 10, 2022 · 2 comments
Assignees
Labels
good first issue Good for newcomers

Comments

@mucahitdemir
Copy link
Owner

EPROM, in full erasable programmable read-only memory, form of computer memory that does not lose its content when the power supply is cut off and that can be erased and reused. EPROMs are generally employed for programs designed for repeated use but that can be upgraded with a later version of a program.

@mucahitdemir mucahitdemir added the good first issue Good for newcomers label May 10, 2022
@mucahitdemir mucahitdemir self-assigned this May 10, 2022
@mucahitdemir
Copy link
Owner Author

Need to protect an even smaller section of critical code? The Lockable ID page feature is a 128-byte memory space separate from the main array. This feature is intended to be used for storing things like factory calibration settings, manufacturing data, MAC addresses, or other identifying information that can be programmed and then set to read-only.

Untitled

@mucahitdemir
Copy link
Owner Author

Secondly, EEPROM will not be erased if you remove power from it, but it won't hold onto your data indefinitely. Electrons can drift out of the transistors and through the insulator, effectively erasing the EEPROM over time. That said, this usually occurs over the course of years (although it can be accelerated by heat). Most manufacturers say that your data is safe on EEPROM for 10 years or more at room temperature.

And there's one more thing you should keep in mind when selecting an EEPROM device for your project. EEPROM capacity is measured ibits and not bytes. A 256K EEPROM will hold 256Kbits of data, in other words, just 32KB.

A bit is the most fundamental measurement of memory size.

FLASH Memory vs EEPROM
Untitled

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

1 participant