modif mineure

This commit is contained in:
pgp 2021-02-04 18:12:08 +01:00
parent 112d21f24e
commit 6e78d211c9

View file

@ -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";