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

file not found exception (No such directory)

I am trying to write to eeprom (at24) from user space in android. I got the exception com.ipil.ipilMdm.service.lib I/System.out: java.io.FileNotFoundException: /sys/devices/soc.0/78ba000.i2c/i2c-6/6-0050/eeprom (No such file or directory) The path…
manstud
  • 39
  • 1
  • 7
1
vote
1 answer

How to access (read/write) EEPROM device via SMBus/I2C in a pci device? (LINUX)

I have a PCI device with EEPROM in it that supports SMBus/I2C. I would like to create a userspace application (Linux) that can read and write to target EEPROM. Similar to what IPMI is doing in querying VPD information on every SSD/NVME device.…
starz
  • 11
  • 1
  • 5
1
vote
1 answer

I2C between EEPROM and Arduino working, not with STM32

This is driving me nuts for a couple of days now, so maybe you guys can give me some insights into what is going wrong. I'm trying to read some data from an EEPROM (24LC16B) with an STM32(F0), but it just doesn't let me. I've tried an Arduino, which…
Mathlight
  • 6,436
  • 17
  • 62
  • 107
1
vote
1 answer

Redundant values and Redundancy systems in I2C eeprom

I've inherited an eeprom library for STM32 for an i2c device which is using the HAL_I2C_Mem_xxx library. What i've noticed is that for each saved parameter there are 2 copies of it. So in total 3 times the same value. I was wondering if this is a…
Luigi
  • 376
  • 3
  • 16
1
vote
2 answers

How do I unpack raw binary from Asus BIOS update file?

I am attempting to repair a bricked Asus X53SV notebook (Asus K53SV board) by reflashing with flashrom from a Raspberry Pi. I've got it all hooked up and flashrom recognizes and reads the chip. However, I cannot determine what type of file the BIOS…
Nilpo
  • 4,675
  • 1
  • 25
  • 39
1
vote
1 answer

Arduino reading json from EEPROM / converting uint8_t to char

I'm using ArduinoJSON to write a couple of data points to my EEPROM on Arduino Uno. I'm running into a problem with getGroundedPR where I need to convert a uint8_t to a char to pass retrieved data into my JSON parser. This is my first time using…
Jacksonkr
  • 31,583
  • 39
  • 180
  • 284
1
vote
1 answer

PIC 18F452 Life Timer Storage

We are storing timer in EEPROM_Write but data wipes out due to unknown reason. Your help is highly appreciated. In short if you have a code to run a life-timer ( Mileage Meter in Bike, storage last stage on system poweroff and restore from last…
comsian
  • 165
  • 1
  • 1
  • 7
1
vote
0 answers

Python INT to IntelHex with CRC16

I want to convert the integer 259 to an IntelHex formatted file using Python3. I found the IntelHex python package and tried getting it to do the job but I failed miserably when it comes to the correct byte count. This is my integer in bytes,…
xtlc
  • 1,070
  • 1
  • 15
  • 41
1
vote
1 answer

Wrong number returns from EEPROM.get arduino

In the setup function i clear the EEPROM if a specific button is clicked. in the loop function at the start i have this code: if(millis() - last_sample >= 180){ sampler(); EEPROM.get(stateEEPROMAdress, stateCode); stateCode =…
alireza
  • 41
  • 2
  • 9
1
vote
1 answer

Attiny85 EEPROM erase, after power lost

my Attiny85 losts the whole EEPROM data, if I turn the power of. I use the Arduino IDE and I'm sure, that The EEPROM was wrote, because I get Serial feedback. Here my code: #include #include SoftwareSerial SSerial(0,…
SPJS01Pro
  • 79
  • 1
  • 11
1
vote
1 answer

Read/write data storage into Flash Memory in STM32f407 discovery using HAL

I am trying to store the data inside the Flash (non volatile memory) for further retrieve. So that when the power is off and on again , then I can read the data from memory. uint32_t address = 0x0800C000; uint64_t data =…
Aashram
  • 13
  • 1
  • 6
1
vote
2 answers

ATtiny85 eeprom write in the arduino IDE

I have a problem: I can read the EEPROM from my ATtiny, but I can't write something in it. Here is my code: #include int addr = 0; int val = 2; void setup() { } void loop() { EEPROM.write(addr, val); addr = addr +…
SPJS01Pro
  • 79
  • 1
  • 11
1
vote
1 answer

How to read from and write to EEPROM suing SPI communication

I am using PIC32MX350F128L Microcontroller to read from and write to EEPROM(SST26VF032B) using SPI communication. SPI communication in this program is working, I have checked it by sending JEDEC code which is provided in the SST26VF032B datasheet.…
1
vote
0 answers

EEPROM read and write Operation using SPI communication (PIC32MX350F1128L) (Checking EEPROM value using UART)

I am working on EEPROM read and write operation using SPI communication, and I am checking the recieved bytes using UART communication. The problem I am facing in this code is I am writing to EEPROM and reading the value from EEPROM and showing the…
1
vote
3 answers

Desktop software development (possibly using web technology) and cryptographic checks

OK, go easy on me as it's my first question here. ;) I am experienced in Web Application development, but I need to design 2 different desktop applications at work. I need advice on what languages to use (I use PHP for Web Applications, I have…
Paul
  • 291
  • 6
  • 17