選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 

80 行
2.3 KiB

  1. /**
  2. ******************************************************************************
  3. * @file stm32f4xx_hal_flash_ramfunc.h
  4. * @author MCD Application Team
  5. * @brief Header file of FLASH RAMFUNC driver.
  6. ******************************************************************************
  7. * @attention
  8. *
  9. * <h2><center>&copy; Copyright (c) 2017 STMicroelectronics.
  10. * All rights reserved.</center></h2>
  11. *
  12. * This software component is licensed by ST under BSD 3-Clause license,
  13. * the "License"; You may not use this file except in compliance with the
  14. * License. You may obtain a copy of the License at:
  15. * opensource.org/licenses/BSD-3-Clause
  16. *
  17. ******************************************************************************
  18. */
  19. /* Define to prevent recursive inclusion -------------------------------------*/
  20. #ifndef __STM32F4xx_FLASH_RAMFUNC_H
  21. #define __STM32F4xx_FLASH_RAMFUNC_H
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. #if defined(STM32F410Tx) || defined(STM32F410Cx) || defined(STM32F410Rx) || defined(STM32F411xE) || defined(STM32F446xx) || defined(STM32F412Zx) ||\
  26. defined(STM32F412Vx) || defined(STM32F412Rx) || defined(STM32F412Cx)
  27. /* Includes ------------------------------------------------------------------*/
  28. #include "stm32f4xx_hal_def.h"
  29. /** @addtogroup STM32F4xx_HAL_Driver
  30. * @{
  31. */
  32. /** @addtogroup FLASH_RAMFUNC
  33. * @{
  34. */
  35. /* Exported types ------------------------------------------------------------*/
  36. /* Exported macro ------------------------------------------------------------*/
  37. /* Exported functions --------------------------------------------------------*/
  38. /** @addtogroup FLASH_RAMFUNC_Exported_Functions
  39. * @{
  40. */
  41. /** @addtogroup FLASH_RAMFUNC_Exported_Functions_Group1
  42. * @{
  43. */
  44. __RAM_FUNC HAL_StatusTypeDef HAL_FLASHEx_StopFlashInterfaceClk(void);
  45. __RAM_FUNC HAL_StatusTypeDef HAL_FLASHEx_StartFlashInterfaceClk(void);
  46. __RAM_FUNC HAL_StatusTypeDef HAL_FLASHEx_EnableFlashSleepMode(void);
  47. __RAM_FUNC HAL_StatusTypeDef HAL_FLASHEx_DisableFlashSleepMode(void);
  48. /**
  49. * @}
  50. */
  51. /**
  52. * @}
  53. */
  54. /**
  55. * @}
  56. */
  57. /**
  58. * @}
  59. */
  60. #endif /* STM32F410xx || STM32F411xE || STM32F446xx || STM32F412Zx || STM32F412Vx || STM32F412Rx || STM32F412Cx */
  61. #ifdef __cplusplus
  62. }
  63. #endif
  64. #endif /* __STM32F4xx_FLASH_RAMFUNC_H */
  65. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/