[笔记]STM32基于HAL库的SDIO+FATFS文件系统_stm32f103 hal sdio fatfs-程序员宅基地

技术标签: stm32  sdio  STM32  单片机  

1、背景

        要用到Bootloader升级,APP部分要写运行日志。所以在Bootloader部分的FATFS要做裁剪,裁剪到只剩只读的操作就可以了,而APP端做可读可写。

2、开发板

        用的是野火的STM32F103VETx指南者

3、工具

        STM32CubeMx 和 Keil5

4、制作只读的FATFS文件系统

        我用的是4线 Bit的配置,时钟尽量不要太高,我这里用了36分频,最终具体的频率要自己算一下。

 

然后配置FATFS,User-defined我建议是选上,对初学者的一次成功概率要更高一点。

        要使能第二行的FS_READONLY的话,要让最后一行的FS_LOCK设置成0才能看到选项(这个是设置成只读的配置,其他的写啥的f_write,基本都不能用,为了省空间)

        第二、三行我就不做解释,后面我会放个链接,你们可以看看大概是做什么的。

        从CODE_PAGE开始,按照顺序,设置英文、使能栈的缓存,最大的LFN为64(默认是255,如果跟我一样设置为64,那么SD里面的文件名超过64字的长度的话,可能会出现f_open失败的情况,请按照个人情况设置)

STM32笔记之 Fatfs(文件系统移植)_夏沫的杂物间-程序员宅基地写在前面:本文章旨在总结备份、方便以后查询,由于是个人总结,如有不对,欢迎指正;另外,内容大部分来自网络、书籍、和各类手册,如若侵权请告知,马上删帖致歉。一、介绍FatFs是用于小型嵌入式系统的通用 FAT / exFAT文件系统模块。FatFs模块是按照 ANSI C(C89)编写的,并且与磁盘 I / O层完全分开。因此,它独立于平台。它可以并入资源有限的小型微控制器中,例如8...https://blog.csdn.net/qq_42992084/article/details/105717906

FatFs模块功能配置选项_朱工的专栏-程序员宅基地Fatfs模块的功能可以裁剪,通过配置宏定义实现,宏定义位于文件ffconf.h中。1.功能配置1.1 _FS_READONLY使能或禁用与写相关函数。当设置为只读(1)时,API函数f_write、f_sync、f_unlink、f_mkdir、f_chmod、f_rename、f_truncate、f_getfree。1.2 _FS_MINIMIZE函数功能裁剪。1.3 _USE_STRhttps://blog.csdn.net/zhzht19861011/article/details/52910541

        这两个链接里面有涉及到FATFS的裁剪部分的说明,其实占空间最大的是这个选项,如果你选择了兼容汉字的话,我编译出来是190K左右,基本玩不了的。

还有一些其他的配置,基本都懂的

 

 最后的栈空间最好设置大一下,保证SDIO不会溢出

最后附上代码,有点长。如果你的CubeMx的设置跟我一样的话,可以直接复制。记得要勾上微库选项,以及printf的重定向。

/* USER CODE BEGIN Header */
/**
  ******************************************************************************
  * @file           : main.c
  * @brief          : Main program body
  ******************************************************************************
  * @attention
  *
  * <h2><center>&copy; Copyright (c) 2021 STMicroelectronics.
  * All rights reserved.</center></h2>
  *
  * This software component is licensed by ST under Ultimate Liberty license
  * SLA0044, the "License"; You may not use this file except in compliance with
  * the License. You may obtain a copy of the License at:
  *                             www.st.com/SLA0044
  *
  ******************************************************************************
  */
/* USER CODE END Header */
/* Includes ------------------------------------------------------------------*/
#include "main.h"
#include "fatfs.h"
#include "sdio.h"
#include "usart.h"
#include "gpio.h"

/* Private includes ----------------------------------------------------------*/
/* USER CODE BEGIN Includes */
#include "stdio.h"
/* USER CODE END Includes */

/* Private typedef -----------------------------------------------------------*/
/* USER CODE BEGIN PTD */
FATFS fs;													/* FatFs文件系统对象 */
FIL file;													/* 文件对象 */
FRESULT f_res;                    /* 文件操作结果 */
UINT fnum;            					  /* 文件成功读写数量 */
BYTE ReadBuffer[1024]={0};        /* 读缓冲区 */
BYTE WriteBuffer[]= "Welcome to the wildfire STM32 development board. Today is a good day to create new file system test files\r\n";

/* USER CODE END PTD */

/* Private define ------------------------------------------------------------*/
/* USER CODE BEGIN PD */
/* USER CODE END PD */

/* Private macro -------------------------------------------------------------*/
/* USER CODE BEGIN PM */
#define DBGPRINTF printf
/**
  * @brief  打印输出信息
  * @param  无
  * @retval 无
  */
 void printf_fatfs_error(FRESULT fresult)
{
  switch(fresult)
  {
    case FR_OK:
      DBGPRINTF("!!The operation was successful.\r\n");
    break;
    case FR_DISK_ERR:
    	DBGPRINTF("!!Hardware I / O driver error.\r\n");
    break;
    case FR_INT_ERR:
    	DBGPRINTF("!!Assertion error.\r\n");
    break;
    case FR_NOT_READY:
    	DBGPRINTF("!!The physical device is not working.\r\n");
    break;
    case FR_NO_FILE:
    	DBGPRINTF("!!Unable to find file.\r\n");
    break;
    case FR_NO_PATH:
    	DBGPRINTF("!!The path could not be found.\r\n");
    break;
    case FR_INVALID_NAME:
    	DBGPRINTF("!!Invalid pathname.\r\n");
    break;
    case FR_DENIED:
    case FR_EXIST:
    	DBGPRINTF("!!Access denied.\r\n");
    break;
    case FR_INVALID_OBJECT:
    	DBGPRINTF("!!Invalid file or path.\r\n");
    break;
    case FR_WRITE_PROTECTED:
    	DBGPRINTF("!!Logical device write protection.\r\n");
    break;
    case FR_INVALID_DRIVE:
    	DBGPRINTF("!!Invalid logical device.\r\n");
    break;
    case FR_NOT_ENABLED:
    	DBGPRINTF("!!Invalid workspace.\r\n");
    break;
    case FR_NO_FILESYSTEM:
    	DBGPRINTF("!!Invalid file system.\r\n");
    break;
    case FR_MKFS_ABORTED:
    	DBGPRINTF("!!Fmkfs function operation failed due to function parameter problem.\r\n");
    break;
    case FR_TIMEOUT:
    	DBGPRINTF("!!The operation timed out.\r\n");
    break;
    case FR_LOCKED:
    	DBGPRINTF("!!The file is protected.\r\n");
    break;
    case FR_NOT_ENOUGH_CORE:
    	DBGPRINTF("!!Long file name support failed to get heap space.\r\n");
    break;
    case FR_TOO_MANY_OPEN_FILES:
    	DBGPRINTF("!!Too many files open.\r\n");
    break;
    case FR_INVALID_PARAMETER:
    	DBGPRINTF("!!Invalid parameter.\r\n");
    break;
  }
}
/* USER CODE END PM */

/* Private variables ---------------------------------------------------------*/

/* USER CODE BEGIN PV */

/* USER CODE END PV */

/* Private function prototypes -----------------------------------------------*/
void SystemClock_Config(void);
/* USER CODE BEGIN PFP */

/* USER CODE END PFP */

/* Private user code ---------------------------------------------------------*/
/* USER CODE BEGIN 0 */

/* USER CODE END 0 */

/**
  * @brief  The application entry point.
  * @retval int
  */
int main(void)
{
  /* USER CODE BEGIN 1 */

  /* USER CODE END 1 */

  /* MCU Configuration--------------------------------------------------------*/

  /* Reset of all peripherals, Initializes the Flash interface and the Systick. */
  HAL_Init();

  /* USER CODE BEGIN Init */

  /* USER CODE END Init */

  /* Configure the system clock */
  SystemClock_Config();

  /* USER CODE BEGIN SysInit */

  /* USER CODE END SysInit */

  /* Initialize all configured peripherals */
  MX_GPIO_Init();
  MX_SDIO_SD_Init();
  MX_USART1_UART_Init();
  MX_FATFS_Init();
  /* USER CODE BEGIN 2 */
 
  DBGPRINTF("\r\r\n****** This is a SD card file system experiment ******\r\n");
 
  	 // 注册一个FatFS设备:SD卡 //
    if(FATFS_LinkDriver(&SD_Driver, SDPath) == 0)
    {
      //在SD卡挂载文件系统,文件系统挂载时会对SD卡初始化
      f_res = f_mount(&fs,(TCHAR const*)SDPath,1);
      printf_fatfs_error(f_res);
      //----------------------- 格式化测试 ---------------------------//
      // 如果没有文件系统就格式化创建创建文件系统 */
      if(f_res!=FR_OK)
      {
        DBGPRINTF("The SD card failed to mount the file system.(%d)\r\n",f_res);
        printf_fatfs_error(f_res);
        while(1);
      }
      else
      {
        DBGPRINTF("The file system is mounted successfully and can be read and written\r\n");
      }
 
      //------------------- 文件系统测试:读测试 ------------------------------------//
      DBGPRINTF("****** File read test is about to take place... ******\r\n");
      f_res = f_open(&file, "FatFsRWFiles.txt", FA_OPEN_EXISTING | FA_READ);
	  printf_fatfs_error(f_res);
      if(f_res == FR_OK)
      {
        DBGPRINTF("File opened successfully.\r\n");
        f_res = f_read(&file, ReadBuffer, sizeof(ReadBuffer), &fnum);
        if(f_res==FR_OK)
        {
          DBGPRINTF("File read successfully, read byte data: %d\r\n",fnum);
          DBGPRINTF("The obtained file data are as follows:\r\n%s \r\n", ReadBuffer);
        }
        else
        {
          DBGPRINTF("File read failure:(%d)\r\n",f_res);
        }
      }
      else
      {
        DBGPRINTF("Failed to open file.\r\n");
      }
      // 不再读写,关闭文件 //
      f_close(&file);
 
      // 不再使用,取消挂载 //
      f_res = f_mount(NULL,(TCHAR const*)SDPath,1);
    }
    // 注销一个FatFS设备:SD卡 //
    FATFS_UnLinkDriver(SDPath);
  /* USER CODE END 2 */

  /* Infinite loop */
  /* USER CODE BEGIN WHILE */
  while (1)
  {
    /* USER CODE END WHILE */

    /* USER CODE BEGIN 3 */
  }
  /* USER CODE END 3 */
}

/**
  * @brief System Clock Configuration
  * @retval None
  */
void SystemClock_Config(void)
{
  RCC_OscInitTypeDef RCC_OscInitStruct = {0};
  RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};

  /** Initializes the RCC Oscillators according to the specified parameters
  * in the RCC_OscInitTypeDef structure.
  */
  RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE;
  RCC_OscInitStruct.HSEState = RCC_HSE_ON;
  RCC_OscInitStruct.HSEPredivValue = RCC_HSE_PREDIV_DIV1;
  RCC_OscInitStruct.HSIState = RCC_HSI_ON;
  RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
  RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
  RCC_OscInitStruct.PLL.PLLMUL = RCC_PLL_MUL9;
  if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
  {
    Error_Handler();
  }
  /** Initializes the CPU, AHB and APB buses clocks
  */
  RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK
                              |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2;
  RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
  RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
  RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV2;
  RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1;

  if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_2) != HAL_OK)
  {
    Error_Handler();
  }
}

/* USER CODE BEGIN 4 */

/* USER CODE END 4 */

/**
  * @brief  This function is executed in case of error occurrence.
  * @retval None
  */
void Error_Handler(void)
{
  /* USER CODE BEGIN Error_Handler_Debug */
  /* User can add his own implementation to report the HAL error return state */
  __disable_irq();
  while (1)
  {
  }
  /* USER CODE END Error_Handler_Debug */
}

#ifdef  USE_FULL_ASSERT
/**
  * @brief  Reports the name of the source file and the source line number
  *         where the assert_param error has occurred.
  * @param  file: pointer to the source file name
  * @param  line: assert_param error line source number
  * @retval None
  */
void assert_failed(uint8_t *file, uint32_t line)
{
  /* USER CODE BEGIN 6 */
  /* User can add his own implementation to report the file name and line number,
     ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
  /* USER CODE END 6 */
}
#endif /* USE_FULL_ASSERT */

/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/

 如果没有玩过linux/windows开发的话,这里可以更改你想读SD里面的哪个文件。当然前提是,你SD里面有这个文件才行。

需要注意的是,里面的并非是字符,而是十六进制,可以看到最后的0d 0a 00是不是很熟悉,不就是\r\n吗。 

5、制作可读可写的FATFS文件系统

在上面的基础上,只需要更改FATFS部分的配置即可。

/* USER CODE BEGIN Header */
/**
  ******************************************************************************
  * @file           : main.c
  * @brief          : Main program body
  ******************************************************************************
  * @attention
  *
  * <h2><center>&copy; Copyright (c) 2021 STMicroelectronics.
  * All rights reserved.</center></h2>
  *
  * This software component is licensed by ST under Ultimate Liberty license
  * SLA0044, the "License"; You may not use this file except in compliance with
  * the License. You may obtain a copy of the License at:
  *                             www.st.com/SLA0044
  *
  ******************************************************************************
  */
/* USER CODE END Header */
/* Includes ------------------------------------------------------------------*/
#include "main.h"
#include "fatfs.h"
#include "sdio.h"
#include "usart.h"
#include "gpio.h"

/* Private includes ----------------------------------------------------------*/
/* USER CODE BEGIN Includes */
#include "stdio.h"
/* USER CODE END Includes */

/* Private typedef -----------------------------------------------------------*/
/* USER CODE BEGIN PTD */

/* USER CODE END PTD */

/* Private define ------------------------------------------------------------*/
/* USER CODE BEGIN PD */
/* USER CODE END PD */

/* Private macro -------------------------------------------------------------*/
/* USER CODE BEGIN PM */
FATFS fs;													/* FatFs文件系统对象 */
FIL file;													/* 文件对象 */
FRESULT f_res;                    /* 文件操作结果 */
UINT fnum;            					  /* 文件成功读写数量 */
BYTE ReadBuffer[1024]={0};        /* 读缓冲区 */
BYTE WriteBuffer[]= "Welcome to the wildfire STM32 development board. Today is a good day to create new file system test files\r\n";
#define DBGPRINTF printf
 void printf_fatfs_error(FRESULT fresult)
{
  switch(fresult)
  {
    case FR_OK:
      DBGPRINTF("!!The operation was successful.\r\n");
    break;
    case FR_DISK_ERR:
    	DBGPRINTF("!!Hardware I / O driver error.\r\n");
    break;
    case FR_INT_ERR:
    	DBGPRINTF("!!Assertion error.\r\n");
    break;
    case FR_NOT_READY:
    	DBGPRINTF("!!The physical device is not working.\r\n");
    break;
    case FR_NO_FILE:
    	DBGPRINTF("!!Unable to find file.\r\n");
    break;
    case FR_NO_PATH:
    	DBGPRINTF("!!The path could not be found.\r\n");
    break;
    case FR_INVALID_NAME:
    	DBGPRINTF("!!Invalid pathname.\r\n");
    break;
    case FR_DENIED:
    case FR_EXIST:
    	DBGPRINTF("!!Access denied.\r\n");
    break;
    case FR_INVALID_OBJECT:
    	DBGPRINTF("!!Invalid file or path.\r\n");
    break;
    case FR_WRITE_PROTECTED:
    	DBGPRINTF("!!Logical device write protection.\r\n");
    break;
    case FR_INVALID_DRIVE:
    	DBGPRINTF("!!Invalid logical device.\r\n");
    break;
    case FR_NOT_ENABLED:
    	DBGPRINTF("!!Invalid workspace.\r\n");
    break;
    case FR_NO_FILESYSTEM:
    	DBGPRINTF("!!Invalid file system.\r\n");
    break;
    case FR_MKFS_ABORTED:
    	DBGPRINTF("!!Fmkfs function operation failed due to function parameter problem.\r\n");
    break;
    case FR_TIMEOUT:
    	DBGPRINTF("!!The operation timed out.\r\n");
    break;
    case FR_LOCKED:
    	DBGPRINTF("!!The file is protected.\r\n");
    break;
    case FR_NOT_ENOUGH_CORE:
    	DBGPRINTF("!!Long file name support failed to get heap space.\r\n");
    break;
    case FR_TOO_MANY_OPEN_FILES:
    	DBGPRINTF("!!Too many files open.\r\n");
    break;
    case FR_INVALID_PARAMETER:
    	DBGPRINTF("!!Invalid parameter.\r\n");
    break;
  }
}
/* USER CODE END PM */

/* Private variables ---------------------------------------------------------*/

/* USER CODE BEGIN PV */

/* USER CODE END PV */

/* Private function prototypes -----------------------------------------------*/
void SystemClock_Config(void);
/* USER CODE BEGIN PFP */

/* USER CODE END PFP */

/* Private user code ---------------------------------------------------------*/
/* USER CODE BEGIN 0 */

/* USER CODE END 0 */

/**
  * @brief  The application entry point.
  * @retval int
  */
int main(void)
{
  /* USER CODE BEGIN 1 */

  /* USER CODE END 1 */

  /* MCU Configuration--------------------------------------------------------*/

  /* Reset of all peripherals, Initializes the Flash interface and the Systick. */
  HAL_Init();

  /* USER CODE BEGIN Init */

  /* USER CODE END Init */

  /* Configure the system clock */
  SystemClock_Config();

  /* USER CODE BEGIN SysInit */

  /* USER CODE END SysInit */

  /* Initialize all configured peripherals */
  MX_GPIO_Init();
  MX_SDIO_SD_Init();
  MX_USART1_UART_Init();
  MX_FATFS_Init();
  /* USER CODE BEGIN 2 */
 
  DBGPRINTF("\r\r\n****** This is a SD card file system experiment ******\r\n");
 
  	 // 注册一个FatFS设备:SD卡 //
    if(FATFS_LinkDriver(&SD_Driver, SDPath) == 0)
    {
      //在SD卡挂载文件系统,文件系统挂载时会对SD卡初始化
      f_res = f_mount(&fs,(TCHAR const*)SDPath,1);
      printf_fatfs_error(f_res);
      //----------------------- 格式化测试 ---------------------------//
      // 如果没有文件系统就格式化创建创建文件系统 */
   if(f_res == FR_NO_FILESYSTEM)
      {
        DBGPRINTF("The SD card does not have a file system yet and will be formatted...\r\n");
        // 格式化 //
        f_res=f_mkfs((TCHAR const*)SDPath,0,0);
 
        if(f_res == FR_OK)
        {
          DBGPRINTF("The SD card has successfully formatted the file system\r\n");
          // 格式化后,先取消挂载 //
          f_res = f_mount(NULL,(TCHAR const*)SDPath,1);
          // 重新挂载	//
          f_res = f_mount(&fs,(TCHAR const*)SDPath,1);
        }
        else
        {
          DBGPRINTF("Format failed\r\n");
          while(1);
        }
      }
      else if(f_res!=FR_OK)
      {
        DBGPRINTF("The SD card failed to mount the file system.(%d)\r\n",f_res);
        printf_fatfs_error(f_res);
        while(1);
      }
      else
      {
        DBGPRINTF("The file system is mounted successfully and can be read and written\r\n");
      }
 
      //----------------------- 文件系统测试:写测试 -----------------------------//
      // 打开文件,如果文件不存在则创建它 //
      DBGPRINTF("****** A file write test will be performed... ******\r\n");
      f_res = f_open(&file, "unit_sd_rw_test.txt",FA_CREATE_ALWAYS | FA_WRITE );
      if ( f_res == FR_OK )
      {
        DBGPRINTF("Open / create FatFs read / write test file. TXT file successfully, write data to the file.\r\n");
        // 将指定存储区内容写入到文件内 //
        f_res=f_write(&file,WriteBuffer,sizeof(WriteBuffer),&fnum);
        if(f_res==FR_OK)
        {
          DBGPRINTF("File write success, write byte data:%d\r\n",fnum);
          DBGPRINTF("The data written to the file is: \r\n%s\r\n",WriteBuffer);
        }
        else
        {
          DBGPRINTF(" File write failure:(%d)\r\n",f_res);
        }
        // 不再读写,关闭文件 //
        f_close(&file);
      }
      else
      {
        DBGPRINTF("Failed to open / create file.\r\n");
      }
 
      //------------------- 文件系统测试:读测试 ------------------------------------//
      DBGPRINTF("****** File read test is about to take place... ******\r\n");
      f_res = f_open(&file, "unit_sd_rw_test.txt", FA_OPEN_EXISTING | FA_READ);
      if(f_res == FR_OK)
      {
        DBGPRINTF("File opened successfully.\r\n");
        f_res = f_read(&file, ReadBuffer, sizeof(ReadBuffer), &fnum);
        if(f_res==FR_OK)
        {
          DBGPRINTF("File read successfully, read byte data: %d\r\n",fnum);
          DBGPRINTF("The obtained file data are as follows:\r\n%s \r\n", ReadBuffer);
        }
        else
        {
          DBGPRINTF("File read failure:(%d)\r\n",f_res);
        }
      }
      else
      {
        DBGPRINTF("Failed to open file.\r\n");
      }
      // 不再读写,关闭文件 //
      f_close(&file);
 
      // 不再使用,取消挂载 //
      f_res = f_mount(NULL,(TCHAR const*)SDPath,1);
    }
    // 注销一个FatFS设备:SD卡 //
    FATFS_UnLinkDriver(SDPath);
  /* USER CODE END 2 */

  /* Infinite loop */
  /* USER CODE BEGIN WHILE */
  while (1)
  {
    /* USER CODE END WHILE */

    /* USER CODE BEGIN 3 */
  }
  /* USER CODE END 3 */
}

/**
  * @brief System Clock Configuration
  * @retval None
  */
void SystemClock_Config(void)
{
  RCC_OscInitTypeDef RCC_OscInitStruct = {0};
  RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};

  /** Initializes the RCC Oscillators according to the specified parameters
  * in the RCC_OscInitTypeDef structure.
  */
  RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE;
  RCC_OscInitStruct.HSEState = RCC_HSE_ON;
  RCC_OscInitStruct.HSEPredivValue = RCC_HSE_PREDIV_DIV1;
  RCC_OscInitStruct.HSIState = RCC_HSI_ON;
  RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
  RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
  RCC_OscInitStruct.PLL.PLLMUL = RCC_PLL_MUL9;
  if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
  {
    Error_Handler();
  }
  /** Initializes the CPU, AHB and APB buses clocks
  */
  RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK
                              |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2;
  RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
  RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
  RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV2;
  RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1;

  if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_2) != HAL_OK)
  {
    Error_Handler();
  }
}

/* USER CODE BEGIN 4 */

/* USER CODE END 4 */

/**
  * @brief  This function is executed in case of error occurrence.
  * @retval None
  */
void Error_Handler(void)
{
  /* USER CODE BEGIN Error_Handler_Debug */
  /* User can add his own implementation to report the HAL error return state */
  __disable_irq();
  while (1)
  {
  }
  /* USER CODE END Error_Handler_Debug */
}

#ifdef  USE_FULL_ASSERT
/**
  * @brief  Reports the name of the source file and the source line number
  *         where the assert_param error has occurred.
  * @param  file: pointer to the source file name
  * @param  line: assert_param error line source number
  * @retval None
  */
void assert_failed(uint8_t *file, uint32_t line)
{
  /* USER CODE BEGIN 6 */
  /* User can add his own implementation to report the file name and line number,
     ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
  /* USER CODE END 6 */
}
#endif /* USE_FULL_ASSERT */

/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/

只要你没有去选择兼容汉字的选项,基本上这个文件系统不会太大。只读和可读可写,在占用空间上相差并不会太大,但MCU上的空间是金子呀【笑哭】。FATFS的选项可能有点选的不太合适,发现的可以在评论区补充一下,

就介绍到这里了!!!有问题可以私聊或在评论区留言

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://blog.csdn.net/qq_33591039/article/details/121611426

智能推荐

c# 调用c++ lib静态库_c#调用lib-程序员宅基地

文章浏览阅读2w次,点赞7次,收藏51次。四个步骤1.创建C++ Win32项目动态库dll 2.在Win32项目动态库中添加 外部依赖项 lib头文件和lib库3.导出C接口4.c#调用c++动态库开始你的表演...①创建一个空白的解决方案,在解决方案中添加 Visual C++ , Win32 项目空白解决方案的创建:添加Visual C++ , Win32 项目这......_c#调用lib

deepin/ubuntu安装苹方字体-程序员宅基地

文章浏览阅读4.6k次。苹方字体是苹果系统上的黑体,挺好看的。注重颜值的网站都会使用,例如知乎:font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, PingFang SC, Microsoft YaHei, Source Han Sans SC, Noto Sans CJK SC, W..._ubuntu pingfang

html表单常见操作汇总_html表单的处理程序有那些-程序员宅基地

文章浏览阅读159次。表单表单概述表单标签表单域按钮控件demo表单标签表单标签基本语法结构<form action="处理数据程序的url地址“ method=”get|post“ name="表单名称”></form><!--action,当提交表单时,向何处发送表单中的数据,地址可以是相对地址也可以是绝对地址--><!--method将表单中的数据传送给服务器处理,get方式直接显示在url地址中,数据可以被缓存,且长度有限制;而post方式数据隐藏传输,_html表单的处理程序有那些

PHP设置谷歌验证器(Google Authenticator)实现操作二步验证_php otp 验证器-程序员宅基地

文章浏览阅读1.2k次。使用说明:开启Google的登陆二步验证(即Google Authenticator服务)后用户登陆时需要输入额外由手机客户端生成的一次性密码。实现Google Authenticator功能需要服务器端和客户端的支持。服务器端负责密钥的生成、验证一次性密码是否正确。客户端记录密钥后生成一次性密码。下载谷歌验证类库文件放到项目合适位置(我这边放在项目Vender下面)https://github.com/PHPGangsta/GoogleAuthenticatorPHP代码示例://引入谷_php otp 验证器

【Python】matplotlib.plot画图横坐标混乱及间隔处理_matplotlib更改横轴间距-程序员宅基地

文章浏览阅读4.3k次,点赞5次,收藏11次。matplotlib.plot画图横坐标混乱及间隔处理_matplotlib更改横轴间距

docker — 容器存储_docker 保存容器-程序员宅基地

文章浏览阅读2.2k次。①Storage driver 处理各镜像层及容器层的处理细节,实现了多层数据的堆叠,为用户 提供了多层数据合并后的统一视图②所有 Storage driver 都使用可堆叠图像层和写时复制(CoW)策略③docker info 命令可查看当系统上的 storage driver主要用于测试目的,不建议用于生成环境。_docker 保存容器

随便推点

网络拓扑结构_网络拓扑csdn-程序员宅基地

文章浏览阅读834次,点赞27次,收藏13次。网络拓扑结构是指计算机网络中各组件(如计算机、服务器、打印机、路由器、交换机等设备)及其连接线路在物理布局或逻辑构型上的排列形式。这种布局不仅描述了设备间的实际物理连接方式,也决定了数据在网络中流动的路径和方式。不同的网络拓扑结构影响着网络的性能、可靠性、可扩展性及管理维护的难易程度。_网络拓扑csdn

JS重写Date函数,兼容IOS系统_date.prototype 将所有 ios-程序员宅基地

文章浏览阅读1.8k次,点赞5次,收藏8次。IOS系统Date的坑要创建一个指定时间的new Date对象时,通常的做法是:new Date("2020-09-21 11:11:00")这行代码在 PC 端和安卓端都是正常的,而在 iOS 端则会提示 Invalid Date 无效日期。在IOS年月日中间的横岗许换成斜杠,也就是new Date("2020/09/21 11:11:00")通常为了兼容IOS的这个坑,需要做一些额外的特殊处理,笔者在开发的时候经常会忘了兼容IOS系统。所以就想试着重写Date函数,一劳永逸,避免每次ne_date.prototype 将所有 ios

如何将EXCEL表导入plsql数据库中-程序员宅基地

文章浏览阅读5.3k次。方法一:用PLSQL Developer工具。 1 在PLSQL Developer的sql window里输入select * from test for update; 2 按F8执行 3 打开锁, 再按一下加号. 鼠标点到第一列的列头,使全列成选中状态,然后粘贴,最后commit提交即可。(前提..._excel导入pl/sql

Git常用命令速查手册-程序员宅基地

文章浏览阅读83次。Git常用命令速查手册1、初始化仓库git init2、将文件添加到仓库git add 文件名 # 将工作区的某个文件添加到暂存区 git add -u # 添加所有被tracked文件中被修改或删除的文件信息到暂存区,不处理untracked的文件git add -A # 添加所有被tracked文件中被修改或删除的文件信息到暂存区,包括untracked的文件...

分享119个ASP.NET源码总有一个是你想要的_千博二手车源码v2023 build 1120-程序员宅基地

文章浏览阅读202次。分享119个ASP.NET源码总有一个是你想要的_千博二手车源码v2023 build 1120

【C++缺省函数】 空类默认产生的6个类成员函数_空类默认产生哪些类成员函数-程序员宅基地

文章浏览阅读1.8k次。版权声明:转载请注明出处 http://blog.csdn.net/irean_lau。目录(?)[+]1、缺省构造函数。2、缺省拷贝构造函数。3、 缺省析构函数。4、缺省赋值运算符。5、缺省取址运算符。6、 缺省取址运算符 const。[cpp] view plain copy_空类默认产生哪些类成员函数

推荐文章

热门文章

相关标签