microSD Card control function for DISCO-F469NI based on BD_SD_DISCO_F746NG library by Roy Krikke

Dependencies:   BSP_DISCO_F469NI_modified BD_SD_DISCO_F469NI

Fork of DISCO-F769NI_BD_SD_Card_Control by Kenji Arai

Please refer following my Notebook page.
/users/kenjiArai/notebook/sd-card-control-new/

Revision:
8:3c5373ba612a
Child:
9:b819be925e97
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/1_main.cpp	Sat Dec 07 03:26:31 2019 +0000
@@ -0,0 +1,145 @@
+/*
+ * Mbed Application program
+ *  SD Card file control function with FatFs on Mbed-os5
+ *
+ * Copyright (c) 2018,'19 Kenji Arai / JH1PJL
+ *  http://www.page.sannet.ne.jp/kenjia/index.html
+ *  https://os.mbed.com/users/kenjiArai/
+ *      Created:    April      7th, 2018
+ *      Revised:    December   7th, 2019
+ */
+
+//  Select ---------------------------------------------------------------------
+#include "select_program.h"
+#ifdef MAIN_1
+
+//  Include --------------------------------------------------------------------
+#include    "mbed.h"
+#include    "FATFileSystem.h"
+#include    "SDBlockDeviceDISCOF469NI.h"
+#include    "mon.h"
+
+//  Definition -----------------------------------------------------------------
+#define     USER_SW_ON      1
+#define     LOOP_TIME       25      // 25mS
+
+#define DEBUG  0
+
+#if DEBUG
+#define DBG(...)    pc.printf(__VA_ARGS__)
+#else
+#define DBG(...)    {;}
+#endif
+
+//  Constructor ----------------------------------------------------------------
+DigitalOut      led(LED1);
+DigitalIn       user_sw(USER_BUTTON);
+Serial          pc(USBTX, USBRX, 115200);
+// Instantiate the Block Device for sd card on DISCO-F469NI
+SDBlockDeviceDISCOF469NI bd;
+FATFileSystem   fs("fs");
+Timer           tmr;
+
+//  RAM ------------------------------------------------------------------------
+
+//  ROM / Constant data --------------------------------------------------------
+const char *const opening_msg0 = "microSD Card test program";
+const char *const opening_msg1 = " -> run on Mbed OS-5\r\n";
+
+//  Function prototypes --------------------------------------------------------
+void return_error (int ret_val);
+void errno_error (void* ret_val);
+
+//------------------------------------------------------------------------------
+//  Control Program
+//------------------------------------------------------------------------------
+int main()
+{
+    time_t      seconds;
+    uint32_t data0 = 10000U;
+    uint32_t data1 = 20000U;
+    uint32_t data2 = 30000U;
+    uint32_t data3 = 40000U;
+    uint32_t data4 = 50000U;
+    uint32_t data5 = 60000U;
+
+    DBG("line:%d\r\n", __LINE__);
+    pc.printf("\r\nStart\r\n");
+    int error = 0;
+    pc.printf("Welcome to the filesystem example.\r\n");
+    pc.printf("Mounting the filesystem on \"/fs\". \r\n");
+    error = fs.mount(&bd);
+    return_error(error);
+
+    if (user_sw == USER_SW_ON) {
+        mon();
+    }
+    FILE* fp = fopen("/fs/mydata.txt", "a");
+    errno_error(fp);
+    if (fp != 0) {
+        pc.printf("%s%s",  opening_msg0, opening_msg1);
+        fprintf(fp,"%s%s", opening_msg0, opening_msg1);
+    } else {
+        pc.printf("ERROR\r\n");
+    }
+    fclose(fp);
+    while (pc.readable()) {
+        char c = pc.getc(); // dummy read
+    }
+    while (true) {
+        DBG("line:%d\r\n", __LINE__);
+        tmr.reset();
+        tmr.start();
+        uint32_t size = get_disk_freespace();
+        pc.printf("free %u  ", size);
+        fp = fopen("/fs/mydata.txt", "a");
+        if(fp != 0) {
+            char tmp[64];
+            DBG("line:%d\r\n", __LINE__);
+            seconds = time(NULL);
+            strftime(tmp, 64, "DATE %H:%M:%S,%Y/%m/%d,", localtime(&seconds));
+            pc.printf("%s", tmp);
+            fprintf(fp, "%s", tmp);
+            pc.printf("%08d;%08d;%08d;%08d;%08d;%08d\r\n",
+                      ++data0, ++data1, ++data2, ++data3, ++data4, ++data5);
+            fprintf(fp, "%08d;%08d;%08d;%08d;%08d;%08d\r\n",
+                        data0,   data1,   data2,   data3,   data4,   data5);
+        } else {
+            pc.printf("ERROR\r\n");
+        }
+        fclose(fp);
+        uint32_t time_sd = tmr.read_us();
+        pc.printf("time:%6d ", time_sd);
+        if (time_sd < LOOP_TIME -2){
+            ThisThread::sleep_for(LOOP_TIME - time_sd);
+        }
+        if (user_sw == USER_SW_ON) {
+            DBG("line:%d\r\n", __LINE__);
+            break;
+        }
+        if (pc.readable()) {
+            mon();
+        }
+        led = !led;
+    }
+    while(true) {
+        mon();
+        system_reset();
+    }
+}
+
+void return_error (int ret_val)
+{
+    if (ret_val) {
+        pc.printf("retrun error/Failure. %d\r\n", ret_val);
+    }
+}
+
+void errno_error (void* ret_val)
+{
+    if (ret_val == NULL) {
+        pc.printf("error #/Failure. %d \r\n", errno);
+    }
+}
+
+#endif
\ No newline at end of file