s

Dependencies:   SD_DISCO_F746NG BSP_DISCO_F746NG

Revision:
0:25706db117ec
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Tue Jun 11 17:58:34 2019 +0000
@@ -0,0 +1,125 @@
+#include "mbed.h"
+#include "SD_DISCO_F746NG.h"
+
+SD_DISCO_F746NG sd;
+Serial pc(USBTX, USBRX);
+
+#define BLOCK_START_ADDR         0     /* Block start address      */
+#define NUM_OF_BLOCKS            5     /* Total number of blocks   */
+#define BUFFER_WORDS_SIZE        ((BLOCKSIZE * NUM_OF_BLOCKS) >> 2) /* Total data size in bytes */
+ 
+uint32_t aTxBuffer[BUFFER_WORDS_SIZE];
+uint32_t aRxBuffer[BUFFER_WORDS_SIZE];
+/* Private function prototypes -----------------------------------------------*/
+void SD_main_test(void);
+void SD_Detection(void);
+
+static void Fill_Buffer(uint32_t *pBuffer, uint32_t uwBufferLenght, uint32_t uwOffset);
+static uint8_t Buffercmp(uint32_t* pBuffer1, uint32_t* pBuffer2, uint16_t BufferLength);
+ 
+int main()
+{
+    uint8_t SD_state = MSD_OK;
+    pc.printf("\n\nuSD start:\n\r");  
+    SD_state = sd.Init();
+    if(SD_state != MSD_OK){
+        if(SD_state == MSD_ERROR_SD_NOT_PRESENT){
+            pc.printf("xin gan the SD truoc khi test\n\r");
+        } else {
+            pc.printf("Khoi tao the SD: FAIL.\n\r");
+        }
+        pc.printf("Kiem tra the SD bi huy bo.\n\r");
+    } else {
+        pc.printf("Khoi tao the SD: OK.\n\r");
+        SD_state = sd.Erase(BLOCK_START_ADDR, (BLOCK_START_ADDR + NUM_OF_BLOCKS - 1));
+
+        /* Đợi cho đến khi thẻ SD sẵn sàng  */
+        while(sd.GetCardState() != SD_TRANSFER_OK){
+        }
+        if (SD_state != MSD_OK){
+            pc.printf("Xoa the SD: FAILED.\n\r");
+            pc.printf("Kiem tra the SD bi huy bo.\n\r");
+        } else {
+            pc.printf("Xoa the SD: OK.\n\r");
+
+            /* Ghi vào bộ đệm */
+            Fill_Buffer(aTxBuffer, BUFFER_WORDS_SIZE, 0x2300);
+          
+            SD_state = sd.WriteBlocks(aTxBuffer, BLOCK_START_ADDR, NUM_OF_BLOCKS, 10000);
+            /* Đợi cho đến khi thẻ SD sẵn sàng */
+            while(sd.GetCardState() != SD_TRANSFER_OK){
+            }
+
+            if (SD_state != MSD_OK){
+                pc.printf("Ghi du lieu len the SD: FAILED.\n\r");
+                pc.printf("Kiem tra the SD bi huy bo.\n\r");
+            } else {
+                pc.printf("Ghi du lieu len the SD: OK.\n\r");
+                SD_state = sd.ReadBlocks(aRxBuffer, BLOCK_START_ADDR, NUM_OF_BLOCKS, 10000);
+                /*Đợi cho đến khi thẻ SD sẵn sàng */
+                while(sd.GetCardState() != SD_TRANSFER_OK){
+                }
+
+                if (SD_state != MSD_OK){
+                    pc.printf("Doc the SD: FAILED.\n\r");
+                    pc.printf("Kiem tra the SD bi huy bo.\n\r");
+                } else {
+                    pc.printf("Doc the SD: OK.\n\r");
+                    if(Buffercmp(aTxBuffer, aRxBuffer, BUFFER_WORDS_SIZE) > 0){
+                        pc.printf("So sanh the SD: FAILED.\n\r");
+                        pc.printf("Kiem tra the SD bi huy bo.\n\r");
+                    } else {
+                        pc.printf("Kiem tra the SD: OK.\n\r");
+                        pc.printf("Co the go bo the SD.\n\r");
+                    }
+                }
+            }
+        }
+    }
+  
+    while (1) {
+    }
+} 
+
+/**
+  * @brief  Điền vào bộ đệm với dữ liệu được xác định trước của người dùng
+  * @param  pBuffer: con trỏ trên bộ đệm để điền
+  * @param  uwBufferLenght: kích thước của bộ đệm để điền
+  * @param  uwOffset: giá trị đầu tiên để điền vào bộ đệm
+  * @retval None
+  */
+static void Fill_Buffer(uint32_t *pBuffer, uint32_t uwBufferLength, uint32_t uwOffset)
+{
+  uint32_t tmpIndex = 0;
+
+  /* Put in global buffer different values */
+  for (tmpIndex = 0; tmpIndex < uwBufferLength; tmpIndex++ )
+  {
+    pBuffer[tmpIndex] = tmpIndex + uwOffset;
+  }
+}
+ 
+/**
+  * @brief  So sánh hai bộ đệm
+  * @param  pBuffer1, pBuffer2: bộ đệm được so sánh
+  * @param  BufferLength: chiều dài bộ đệm
+  * @retval 1: pBuffer identical to pBuffer1
+  *         0: pBuffer differs from pBuffer1
+  */
+static uint8_t Buffercmp(uint32_t* pBuffer1, uint32_t* pBuffer2, uint16_t BufferLength)
+{
+  while (BufferLength--)
+  {
+    if (*pBuffer1 != *pBuffer2)
+    {
+      return 1;
+    }
+
+    pBuffer1++;
+    pBuffer2++;
+  }
+
+  return 0;
+}
+
+