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:
8:12aa05f3cc24
Child:
12:87f6955b5a80
--- a/MyClasses_Functions/MyFunctions.cpp	Mon May 09 13:48:33 2016 +0000
+++ b/MyClasses_Functions/MyFunctions.cpp	Wed Jun 22 03:50:38 2016 +0000
@@ -43,15 +43,16 @@
 // ファイルの選択
 //      selectedName:   選択されたファイル名
 void SelectFile(ButtonGroup &menu, FileSelector &selector,
-                Label &msg, string &selectedName)
+                Label &msg, string fileList[], int *selected)
 {
     selector.DisplayFileList();   
     msg.Draw("Select file");
     do
     {
-        if (selector.Select(selectedName))
+        if (selector.Select(fileList, selected))
             menu.Activate(1);   // PLAY 有効
-        wait_ms(200);
+ // ren: change wait timer 200 to 60
+        wait_ms(60);
     } while (!menu.Touched(1)); // PLAY がタッチされるまで繰り返す
 }