bsp_fatfs.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. #include "bsp_fatfs.h"
  2. #include "ext_sram.h"
  3. #include "interface.h"
  4. #include "stm32f4xx.h"
  5. #include <stdio.h>
  6. #include <stdlib.h>
  7. #include <string.h>
  8. FATFS FatFs[_VOLUMES]; /* FatFs文件系统对象 4144字节*/
  9. FIL file_object; /* 文件对象 4132字节*/
  10. /****************************************************
  11. * 函 数 名:get_fattime
  12. * 函数功能:文件系统获取时间
  13. * 入口参数:
  14. * 返 回 值:时间
  15. *****************************************************/
  16. DWORD get_fattime(void)
  17. {
  18. RTC_TimeTypeDef RTC_TimeStruct;
  19. RTC_DateTypeDef RTC_DateStruct;
  20. RTC_GetTime(RTC_Format_BIN, &RTC_TimeStruct);
  21. RTC_GetDate(RTC_Format_BIN, &RTC_DateStruct);
  22. /* 返回当前时间戳 */
  23. return ((DWORD)(2000 + RTC_DateStruct.RTC_Year - 1980) << 25) /* Year 2019 */
  24. | ((DWORD)RTC_DateStruct.RTC_Month << 21) /* Month */
  25. | ((DWORD)RTC_DateStruct.RTC_Date << 16) /* Mday */
  26. | ((DWORD)RTC_TimeStruct.RTC_Hours << 11) /* Hour */
  27. | ((DWORD)RTC_TimeStruct.RTC_Minutes << 5) /* Min */
  28. | ((DWORD)RTC_TimeStruct.RTC_Seconds >> 1); /* Sec */
  29. }
  30. /****************************************************
  31. * 函 数 名:FileSystem_Init
  32. * 函数功能:文件系统初始化
  33. * 入口参数:
  34. * 说 明:无
  35. *****************************************************/
  36. void fatfs_init(void)
  37. {
  38. FRESULT res; /* 文件操作结果 */
  39. res = f_mount(&FatFs[0], "0:", 1); // 文件系统挂载时会对TF初始化
  40. /* 如果没有文件系统就格式化创建创建文件系统 */
  41. if (res == FR_NO_FILESYSTEM) // TF 卡没有文件系统
  42. {
  43. res = f_mkfs("0:", 0, 0); // 格式化
  44. if (res == FR_OK)
  45. {
  46. printf("TF format ok\r\n");
  47. res = f_mount(NULL, "0:", 1); /* 格式化后,先取消挂载 */
  48. res = f_mount(&FatFs[0], "0:", 1); /* 重新挂载 */
  49. }
  50. else
  51. {
  52. LED1_RUN_OFF;
  53. printf("TF format fail\r\n");
  54. }
  55. }
  56. else if (res != FR_OK)
  57. {
  58. LED1_RUN_OFF;
  59. printf("!!!TF mount file system fail (%d)\r\n", res);
  60. }
  61. else
  62. {
  63. LED1_RUN_ON;
  64. printf("File system mount ok !\r\n");
  65. }
  66. res = f_mount(&FatFs[1], "1:", 1); // 文件系统挂载时会对NAND初始化
  67. /* 挂载文件系统 */
  68. // if (res == FR_NO_FILESYSTEM) // NAND 没有文件系统
  69. // {
  70. // res = f_mkfs("1:", 0, 0); // 格式化
  71. // if (res == FR_OK)
  72. // {
  73. // printf("TF format ok\r\n");
  74. // res = f_mount(NULL, "1:", 1); /* 格式化后,先取消挂载 */
  75. // res = f_mount(&fs, "1:", 1); /* 重新挂载 */
  76. // }
  77. // else
  78. // {
  79. // // LED_FAULT_ON;
  80. // printf("TF format fail\r\n");
  81. // }
  82. // }
  83. // else
  84. if (res != FR_OK)
  85. {
  86. LED0_RUN_OFF;
  87. printf("!!!Nand flash mount file system fail (%d)\r\n", res);
  88. }
  89. else
  90. {
  91. LED0_RUN_ON;
  92. printf("Nand flash file system mount ok !\r\n");
  93. }
  94. }