diff --git a/src/main.cpp b/src/main.cpp index 5d21faf..cbddedc 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -52,8 +52,8 @@ DateTime now{rtc.now()}; /* DÉFINITIONS DE LA CARTE SD */ //////////////////////////////// unsigned long inter_ecriture = 60000; // durée entre deux écritures sur la carte SD en millisecondes -char horodatage[12]; //création du tableau pour contenir l'horodatage -char fichier[12]; //tableau pour le nom de fichier +char horodatage[16]; //création du tableau pour contenir l'horodatage +char fichier[16]; //tableau pour le nom de fichier ////////////////////////////////// /* DÉFINITIONS DU DRIVER MOTEUR */ @@ -320,7 +320,7 @@ void sd_init() { } now = rtc.now(); - char date_format[] = "DDhhmm"; + char date_format[] = "MM-DD-hh-mm"; char *date = now.toString(date_format); strcat(fichier,date); char entete[] = "# YY-MM-DD:hh:mm:ss Vrot en tr/min \n";