strange behavior on my prog !

Eric

can you try this code??

const char *sNomJour[7]   __attribute__((section(".eeprom"))) = {"dimanche", "lundi", "mardi", "mercredi", "jeudi", "vendredi", "samedi"};

void setup() {
 beginSerial(9600);
}


void loop() {


   printString(sNomJour[2]);


}

not sure it's going to work but I forced the program to store the array in the eeprom

can you try this technique with your code?

see if it solves the problem

massimo