dsfa

Dependencies:   dsf SDFileSystem TextLCD mbed stepper_moter

Fork of my_example_Nucleo_Ex05_SD_zhangyuxiang2 by liang brain

Revision:
4:c88bf297ee75
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SDRead/SDRead.h	Tue May 08 01:50:44 2018 +0000
@@ -0,0 +1,17 @@
+#ifndef SDREAD_H
+#define SDREAD_H
+#include "SDFileSystem.h"
+#include "mbed.h"
+#include <vector>
+#include <string>
+
+class SDRead:public SDFileSystem
+{
+public:
+    SDRead(PinName mosi,PinName miso,PinName sclk,PinName cs,const char *name);
+    vector<string> File_dir;
+    vector<string> Info;
+    bool Get_FileDir();
+    bool Read_File(const char* FileName);
+};
+#endif
\ No newline at end of file