Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: BSP_DISCO_L476VG COMPASS_DISCO_L476VG ConfigFile GYRO_DISCO_L476VG SDFileSystem mbed
DataFile.h
00001 ///Definition de la classe DataFile qui gère l'enregistrement des mesures 00002 00003 #include "mbed.h" 00004 #include "Mesure.h" 00005 00006 #ifndef DATAFILE_H 00007 #define DATAFILE_H 00008 00009 00010 00011 class tDataFile 00012 { 00013 public: 00014 tDataFile(); 00015 void New(); 00016 void Close(); 00017 void SaveMesures(tMesure * apMesure ); 00018 00019 private: 00020 FILE *fp; 00021 DigitalOut* pLedRecord ; ///pin pour indiquer l'enregistrementou non 00022 int Opened; //0 si fermé, 1 si ouvert 00023 int Index; 00024 }; 00025 #endif
Generated on Thu Jul 14 2022 08:24:02 by
1.7.2