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
0 answers

How to operate at24c32 by smbus in linux?

What if the EEPROM used is greater than 32K, such as at24c32, and the register address is 16bit? It seems that smbus only supports 8bit registers? I can read 0xff, but the written content will return - 5, which fails. I want to know whether the…
lugc1
  • 1
  • 1
0
votes
2 answers

Arduino 24LC256 EEPROM only reads 255

Print to console is always "255" I ran code to check for peripherals it saw a device on 0x50. I don't understand how the EEPROM knows what memory address to read. Neither requestFrom() nor read() pass a value for the memory address to start reading.…
Playing with GAS
  • 565
  • 3
  • 10
  • 18
0
votes
1 answer

How can I use the Pins in the Struct

Hello I have a problem STM32 . In my library I wrote for eeprom, I want to use the pins and ports in the struct and then use them in the HAL_GPIO_Write_Pin function, but I could not succeed. ERROR: incompatible type for argument 2 of…
0
votes
0 answers

Issues with EEPROM functions not saving data for board type (Arduino)

I am trying to work on an Arduino project and for some reason, I cannot get it to store the data on the Adafruit Metro M4 controller or data logger shield (saving so that when reconnected, the data entered would still be there). I have an SD card…
user15881691
0
votes
0 answers

PIC Mplab XC8 EEPROM Read Null

How to check if the eeprom at a particular address is null/empty or not. I'm using the PIC18F45Q43 and using eeprom_read() function.
Rafay Shams
  • 13
  • 1
  • 5
0
votes
1 answer

Unable to access SPD information on AMD EPYC

Background I'm trying to access the Serial Presence Detect Data via i2c on CentOS 7 Linux. I'm mainly looking for the SPD Revision located in byte 1 and is consistent on DDR3 and DDR4 charts. The SPD Revision can not be found through dmidecode,…
jw-smc
  • 23
  • 5
0
votes
1 answer

`i2cdetect` command shows multiple slave addresses for single device

I am working on a project where I need to communicate my slave device EEPROM (Slave address as 0x54). But when I gave the i2cdetect -r -y 10 command it shows 8 different addresses for single hardware. I had configured the hardware by device…
chandru
  • 1
  • 1
0
votes
1 answer

How do I use Preferences.h library in iteration?

I am using an ESP32 WROOM 32D module in a project using Arduino IDE. I want to utilise NVS facility with the help of Preferences.h library that it provides, although the data that can come through user would be stored in different namespaces and…
NaidarDevil
  • 23
  • 1
  • 6
0
votes
0 answers

EEPROM Problem (cant clear arduino-uno eeprom)

I have encountered problem with my Arduino Uno, I just recently started using arduino, and this is my first time to use the EEPROM. My problem is that I have created a password protected door, and due to several attempts I have stored so much…
Karolo
  • 1
  • 1
0
votes
0 answers

ESP32 CAM can't upload to firebase

Hi I want to upload a face sample from the esp32 cam to firebase but I can't find the line of code that shows the process of saving to the esp32cam flash memory. the code I use is the default code from esp32cam. can anyone help?
0
votes
1 answer

ESP32 Partition and Data Storage

I am trying to write firmware code for RFID device which will have config data storage as well as the temporary storage that maybe can be read and then if convenient be removed. I am using Arduino IDE to program this on an ESP32 Wroom32. I have…
NaidarDevil
  • 23
  • 1
  • 6
0
votes
1 answer

EEPROM Data Address Width

I am beginner to electronics and embeds and I am struggling with some probably basic notation in EEPROM.I am using AT25640(64k(8192 x 8)) EEPROM and have confusion with data address width. Array Addresses are from 0000-1FFF that means it has 2 Byte…
gb008
  • 11
  • 3
0
votes
0 answers

How is data written into FLASH MEMORY by pages?

Note: FLASH memory is a type of EEPROM. But when I say EEPROM, I exclude FLASH memory. I have been checking many sources but could not find a clear cut answer on this. From what I read, it looks like most ordinary EEPROMS -nowadays- utilize SPI or…
Xfce4
  • 557
  • 5
  • 28
0
votes
1 answer

Does the memory map of a structure change whether there is a pointer or namespace difference?

I am looking to write a firmware that writes a structure to and reads it back from EEPROM memory. Converting the structure into a byte stream is working, however when I abstract the problem by putting the structure into a namespace, or call…
J Collins
  • 2,106
  • 1
  • 23
  • 30
0
votes
0 answers

How much is the minimum number of pages used with EEPROM EMULATION (AN4894) techniques?

I'm implementing eeprom emulation with the STM32G0 series microprocessor. I am using the AN4894 Application note and the X-CUBE-EEPROM(4.0.0) software, but I have encountered a problem. AN4894 Application note X-CUBE-EEPROM Let me explain how I use…
mefilti
  • 1
  • 1