12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- #ifndef BSP_FSMC_SRAM_H
- #define BSP_FSMC_SRAM_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include "main.h"
- #define Bank1_SRAM3_ADDR ((uint32_t)(0x68000000))
- #define IS62WV51216_SIZE 0x100000
- extern SRAM_HandleTypeDef hsram1;
- 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);
- #ifdef __cplusplus
- }
- #endif
- #endif
|