Skip to main content
deleted 13 characters in body
Source Link
Juraj
  • 18.3k
  • 4
  • 32
  • 50

problem seems to be the potatoe-tier lib I am using. I think it can not handle data overlapping page size.

if iI replace from this

char username[33] = "";
char password[65] = "";

to this:

char username[16] = "";
char password[16] = "";

everything works fine as it saves and reads from the eepromEEPROM via i2cI2C.

problem seems to be the potatoe-tier lib I am using. I think it can not handle data overlapping page size.

if i replace from this

char username[33] = "";
char password[65] = "";

to this:

char username[16] = "";
char password[16] = "";

everything works fine as it saves and reads from the eeprom via i2c.

problem seems to be the lib I am using. I think it can not handle data overlapping page size.

if I replace from this

char username[33] = "";
char password[65] = "";

to this:

char username[16] = "";
char password[16] = "";

everything works fine as it saves and reads from the EEPROM via I2C.

Mod Moved Comments To Chat
Source Link
Musa
  • 167
  • 1
  • 8

problem seems to be the potatoe-tier lib I am using. I think it can not handle data overlapping page size.

if i replace from this

char username[33] = "";
char password[65] = "";

to this:

char username[16] = "";
char password[16] = "";

everything works fine as it saves and reads from the eeprom via i2c.