Questions tagged [eeprom]

Anything related to Electrically-Erasable Programmable Read Only Memory (EEPROM), a kind of non-volatile electronic memory technology. EEPROMs can be programmed and erased using only electrical signals and maintain their content also in absence of power supply. The now ubiquitous Flash memory is a specialized form of EEPROM. QUESTIONS ON STACK OVERFLOW MUST BE PROGRAMMING-RELATED, for other types of questions, post on another Stack Exchange site.

Anything related to Electrically-Erasable Programmable Read Only Memory (EEPROM), a kind of non-volatile electronic memory technology. EEPROMs can be programmed and erased using only electrical signals and maintain their content also in absence of power supply. The now ubiquitous is a specialized form of EEPROM.

See Wikipedia page on EEPROMs.

329 questions
0
votes
2 answers

AVR Eeprom Understanding

I have started to create a button counter and was successful in doing that then I shifted myself to reading and writing eeprom I tried to use the eeprom to read and write a single byte and was also successful in doing so, pretty basic stuff.…
0
votes
0 answers

STM32 writing to EEPROM(I2C) / generating datas by I2C failed with registers

I am trying to learn how to write some datas to eeprom by I2C and I just adjust the clocks configuration on cubemx and then try to handle with all other things with registers. But something went wrong and maybe you guys help me by sheding light on…
hasan bucak
  • 75
  • 1
  • 1
  • 8
0
votes
1 answer

Storing one's own Movesense data-structure

I am currently working on Movesense and I would like to write my own data in the memory with the Datalogger service. My goal is to write a structure of 3 bytes every minute. This should be easy to do but at the moment, I can't find any way to do…
0
votes
0 answers

EEPROM - write more data than it can be written

I have a question- if I have a external EEPROM which for example can be written 500k times, but I need to write one data in EEPROM at maximum 1,5 milions times - what I can do to manage 1,5 milion writings?
0
votes
1 answer

"NVM_E_INTEGRITY_FAILED" Error was detected at startup during "NVM_ReadAll"

Due to CRC( Autosar)issue for a particular NvBlock, "NVM_E_INTEGRITY_FAILED" Error was observed during "NVM_ReadAll()". I tried to debug but couldn't root cause the issue. Out of all the blocks only one NvBlock has the crc issue and obviously…
Teja
  • 21
  • 4
0
votes
0 answers

EEPROM Page Size Clarification

Does Page size actually mean how many bytes i can read/write per read/write cycle? for example a page size of 16 bytes means i can read/write in a single read/write? Thanks.
Ahmad Anwar
  • 123
  • 1
  • 8
0
votes
2 answers

Input a number with Keypad and storing a number to EEPROM

Hi there I don't have very much experience in coding just a basic staff so I need help but I need modification like: First when user press "#" key he has to write the number which will be like a price for a product, Second when user press "A" key…
tanjamaya
  • 23
  • 1
  • 8
0
votes
1 answer

what is the page write buffer of this memory FRAM?

can someone tell me which is the page write buffer of this memory fram MB85RC256V is it 32Kbyte ?
asterix
  • 11
  • 7
0
votes
1 answer

PIC32 SPI EEPROM connection

I have my own board with the PIC32MX795F512L and I'm trying to connect it with an SPI EEPROM (M95128-DRE). I'm writing a byte (0x80) and reading it (after a 5ms delay) but always the reading result is 0xFF. Is there something am I doing wrong? The…
0
votes
1 answer

How to write and read an I2C eeprom using stm32f100 board

I' m working in team on a project using stm32 f100 series board. I should use an external I2C eeprom to storage some data, the eeprom is the following: CAT24C512WI-GT3 and I also have the init code for this I2C eeprom: void io_ee_scl(char s) { …
0
votes
1 answer

STM32F207 Nucleo144 board, writing in permanent memory

I am currently working on Nucleo f207zg. I want to write its variables into its permanent memory (EEPROM). How can I achieve it? I am unable to find read or write functions for the same.
Vandini
  • 11
  • 1
0
votes
0 answers

Read data from EEPROM in Linux kernel module

I have to read MAC address from EEPROM and set it to the network interface while the interface is initializing.And I followed the comment from Read EEPROM entry from linux module to read EEPROM through sysfs. But the result is failed. When I opened…
0
votes
1 answer

I am trying to program a MLX90288 Hall effect sensor and write parameters into its EEPROM

The datasheet provided shows parameters that have addresses and bit size. I want to understand how I can use these with my arduino to program this sensor. Specifically what does the notation "[4:0]" mean next to a parameter. All calibration…
Asher Haque
  • 33
  • 1
  • 6
0
votes
1 answer

Reading EEPROM addresses in Python and perform operations

I am currently trying to match pattern for an eeprom dump text file to locate a certain address and then traverse 4 steps once I hit upon in the search. I have tried the following code for finding the pattern regexp_list = ('A1 B2') line =…
crazybyPy
  • 31
  • 6
0
votes
0 answers

Read/Write from ATtiny1616 EEPROM

Using the ATting1616 within avr-gcc I am trying to read and write to the EEPROM. The ATtiny1616 uses NVMCTRL - Nonvolatile Memory Controller for byte level read/writes. I am using NVMCTRL to read/write blocks from the EEPROM, but it is not working…
Kaimbelic
  • 13
  • 1
  • 7