fsmc.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /**
  2. ******************************************************************************
  3. * File Name : FSMC.h
  4. * Description : This file provides code for the configuration
  5. * of the FSMC peripheral.
  6. ******************************************************************************
  7. * @attention
  8. *
  9. * <h2><center>&copy; Copyright (c) 2021 STMicroelectronics.
  10. * All rights reserved.</center></h2>
  11. *
  12. * This software component is licensed by ST under Ultimate Liberty license
  13. * SLA0044, the "License"; You may not use this file except in compliance with
  14. * the License. You may obtain a copy of the License at:
  15. * www.st.com/SLA0044
  16. *
  17. ******************************************************************************
  18. */
  19. /* Define to prevent recursive inclusion -------------------------------------*/
  20. #ifndef __FSMC_H
  21. #define __FSMC_H
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. /* Includes ------------------------------------------------------------------*/
  26. #include "main.h"
  27. /* USER CODE BEGIN Includes */
  28. /* USER CODE END Includes */
  29. extern SRAM_HandleTypeDef hsram1;
  30. /* USER CODE BEGIN Private defines */
  31. /* USER CODE END Private defines */
  32. void MX_FSMC_Init(void);
  33. void HAL_SRAM_MspInit(SRAM_HandleTypeDef* hsram);
  34. void HAL_SRAM_MspDeInit(SRAM_HandleTypeDef* hsram);
  35. /* USER CODE BEGIN Prototypes */
  36. /* USER CODE END Prototypes */
  37. #ifdef __cplusplus
  38. }
  39. #endif
  40. #endif /*__FSMC_H */
  41. /**
  42. * @}
  43. */
  44. /**
  45. * @}
  46. */
  47. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/