12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- /* USER CODE BEGIN Header */
- /**
- ******************************************************************************
- * File Name : FSMC.h
- * Description : This file provides code for the configuration
- * of the FSMC peripheral.
- ******************************************************************************
- * @attention
- *
- * Copyright (c) 2024 STMicroelectronics.
- * All rights reserved.
- *
- * This software is licensed under terms that can be found in the LICENSE file
- * in the root directory of this software component.
- * If no LICENSE file comes with this software, it is provided AS-IS.
- *
- ******************************************************************************
- */
- /* USER CODE END Header */
- /* Define to prevent recursive inclusion -------------------------------------*/
- #ifndef BSP_FSMC_SRAM_H
- #define BSP_FSMC_SRAM_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- /* Includes ------------------------------------------------------------------*/
- #include "main.h"
- #define Bank1_SRAM3_ADDR ((uint32_t)(0x68000000))
- #define IS62WV51216_SIZE 0x100000 //512*16/2bits = 0x100000 £¬1M×Ö½Ú
- /* USER CODE BEGIN Includes */
- /* USER CODE END Includes */
- extern SRAM_HandleTypeDef hsram1;
- /* USER CODE BEGIN Private defines */
- /* USER CODE END Private defines */
- void MX_FSMC_SRAM_Init(void);
- void HAL_SRAM_MspInit(SRAM_HandleTypeDef* hsram);
- void HAL_SRAM_MspDeInit(SRAM_HandleTypeDef* hsram);
- uint8_t SRAM_Test(void);
- /* USER CODE BEGIN Prototypes */
- /* USER CODE END Prototypes */
- #ifdef __cplusplus
- }
- #endif
- #endif /*__FSMC_H */
- /**
- * @}
- */
- /**
- * @}
- */
|