How to read and write to eeprom ic (24c16) using i2c in stm32f103
hi, i have to read and write to eeprom ic . i am able to write but i am not able to read from my ic . void write_eeprom_reg(uint16_t reg_addr, uint8_t value){//uint8_t d[3];d[0]=(reg_addr>>8) & 0xFF;d[1]=(reg_addr) & 0xFF;d[2]=value; while(HAL_I2C_I...