Search found 1 match

by kpjadhav22
Sat May 06, 2023 9:02 am
Forum: ESP-IDF
Topic: EEPROM interfacing issue with ESP32 WROOM Board
Replies: 1
Views: 1009

EEPROM interfacing issue with ESP32 WROOM Board

For following code, I am not able to read and print the value from EEPROM. Code : #include "driver/i2c.h" #include "freertos/FreeRTOS.h" #include "freertos/task.h" #define I2C_PORT_NUM I2C_NUM_0 #define EEPROM_ADDR 0x50 void i2c_task(void *arg) { uint8_t Write_data[3] = {0xAA, 0x11, 0x22}; // Data t...