Chapter006_Zara_F746NG

Dependencies:   F746_GUI SRF08 Array_Matrix TS_DISCO_F746NG mbed LCD_DISCO_F746NG BSP_DISCO_F746NG SDFileSystem_Warning_Fixed FrequencyResponseDrawer F746_SAI_IO

Revision:
12:85e7363da26a
Parent:
11:769d986c10fa
--- a/MyClasses_Functions/SD_WavReader.cpp	Mon Jul 04 05:59:44 2016 +0000
+++ b/MyClasses_Functions/SD_WavReader.cpp	Wed Apr 03 04:44:32 2019 +0000
@@ -14,15 +14,15 @@
     SD_WavReader::SD_WavReader(int32_t bufferSize)
         : STR_("sd"), ok_(false)
     {
-        sd_ = new SDFileSystem(STR_.c_str());
-        sd_->mount();      
+        //sd_ = new SDFileSystem(STR_.c_str());
+        //sd_->mount();      
         buffer.SetSize(bufferSize*2);
     }
 
     SD_WavReader::~SD_WavReader()
     {
-        sd_->unmount();
-        delete sd_;
+        //sd_->unmount();
+        //delete sd_;
     }
     
     void SD_WavReader::Open(const string fileName)