modif mineure
This commit is contained in:
parent
112d21f24e
commit
6e78d211c9
|
@ -52,8 +52,8 @@ DateTime now{rtc.now()};
|
||||||
/* DÉFINITIONS DE LA CARTE SD */
|
/* DÉFINITIONS DE LA CARTE SD */
|
||||||
////////////////////////////////
|
////////////////////////////////
|
||||||
unsigned long inter_ecriture = 60000; // durée entre deux écritures sur la carte SD en millisecondes
|
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 horodatage[16]; //création du tableau pour contenir l'horodatage
|
||||||
char fichier[12]; //tableau pour le nom de fichier
|
char fichier[16]; //tableau pour le nom de fichier
|
||||||
|
|
||||||
//////////////////////////////////
|
//////////////////////////////////
|
||||||
/* DÉFINITIONS DU DRIVER MOTEUR */
|
/* DÉFINITIONS DU DRIVER MOTEUR */
|
||||||
|
@ -320,7 +320,7 @@ void sd_init() {
|
||||||
}
|
}
|
||||||
|
|
||||||
now = rtc.now();
|
now = rtc.now();
|
||||||
char date_format[] = "DDhhmm";
|
char date_format[] = "MM-DD-hh-mm";
|
||||||
char *date = now.toString(date_format);
|
char *date = now.toString(date_format);
|
||||||
strcat(fichier,date);
|
strcat(fichier,date);
|
||||||
char entete[] = "# YY-MM-DD:hh:mm:ss Vrot en tr/min \n";
|
char entete[] = "# YY-MM-DD:hh:mm:ss Vrot en tr/min \n";
|
||||||
|
|
Loading…
Reference in a new issue