/** ****************************************************************************** * @file stm3210e_eval_fsmc_sram.h * @author MCD Application Team * @version V5.1.0 * @date 18-January-2013 * @brief This file contains all the functions prototypes for the * stm3210e_eval_fsmc_sram firmware driver. ****************************************************************************** * @attention * *

© COPYRIGHT 2013 STMicroelectronics

* * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); * You may not use this file except in compliance with the License. * You may obtain a copy of the License at: * * http://www.st.com/software_license_agreement_liberty_v2 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * ****************************************************************************** */ /* Define to prevent recursive inclusion -------------------------------------*/ #ifndef __STM3210E_EVAL_FSMC_SRAM_H #define __STM3210E_EVAL_FSMC_SRAM_H #ifdef __cplusplus extern "C" { #endif /* Includes ------------------------------------------------------------------*/ #include "stm32f10x.h" /** @addtogroup Utilities * @{ */ /** @addtogroup STM32_EVAL * @{ */ /** @addtogroup STM3210E_EVAL * @{ */ /** @addtogroup STM3210E_EVAL_FSMC_SRAM * @{ */ /** @defgroup STM3210E_EVAL_FSMC_SRAM_Exported_Types * @{ */ /** * @} */ /** @defgroup STM3210E_EVAL_FSMC_SRAM_Exported_Constants * @{ */ /** * @} */ /** @defgroup STM3210E_EVAL_FSMC_SRAM_Exported_Macros * @{ */ /** * @} */ /** @defgroup STM3210E_EVAL_FSMC_SRAM_Exported_Functions * @{ */ void SRAM_Init(void); void SRAM_WriteBuffer(uint16_t* pBuffer, uint32_t WriteAddr, uint32_t NumHalfwordToWrite); void SRAM_ReadBuffer(uint16_t* pBuffer, uint32_t ReadAddr, uint32_t NumHalfwordToRead); #ifdef __cplusplus } #endif #endif /* __STM3210E_EVAL_FSMC_SRAM_H */ /** * @} */ /** * @} */ /** * @} */ /** * @} */ /** * @} */ /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/