revised version of F746_SD_GraphicEqualizer

Dependencies:   BSP_DISCO_F746NG F746_GUI F746_SAI_IO FrequencyResponseDrawer LCD_DISCO_F746NG SDFileSystem_Warning_Fixed TS_DISCO_F746NG mbed

Fork of F746_SD_GraphicEqualizer by 不韋 呂

Revision:
10:fc6367c2ffcf
Parent:
0:e953eb392151
--- a/MyClasses_Functions/SD_WavReader.hpp	Mon May 09 13:48:33 2016 +0000
+++ b/MyClasses_Functions/SD_WavReader.hpp	Wed Jun 22 03:50:38 2016 +0000
@@ -39,7 +39,21 @@
         
         // データサイズ(標本化点の数)の取得
         int32_t GetSize();
-
+        
+        // ren: show a string        
+/*       void ren_Msg1(int pos, char msg[])
+        {  int lin, str_ln, y_pos[7]= {0,70,130,160,190,220,250};
+//        char msg[501];
+//        strcpy(msg, str_msg.c_str());
+//        str_ln=str_msg.size();
+//        if(str_ln>500) str_ln=500;
+//        msg[str_ln]='\0';
+        if(pos<0) lin=0;
+        else if (pos>6)  lin=6;
+        else lin=pos;
+        Label renLabel(0, y_pos[lin], msg, Label::LEFT,Font20);
+        }  
+*/
     private:
         const string STR_;