/** ****************************************************************************** * @file stm32l152d_eval_fsmc_nor.h * @author MCD Application Team * @version V1.0.1 * @date 09-March-2012 * @brief This file contains all the functions prototypes for the * stm32l152d_eval_fsmc_nor firmware driver. ****************************************************************************** * @attention * *

© COPYRIGHT 2012 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 __STM32L152D_EVAL_FSMC_NOR_H #define __STM32L152D_EVAL_FSMC_NOR_H #ifdef __cplusplus extern "C" { #endif /* Includes ------------------------------------------------------------------*/ #include "stm32l152d_eval.h" /** @addtogroup Utilities * @{ */ /** @addtogroup STM32_EVAL * @{ */ /** @addtogroup STM32L152D_EVAL * @{ */ /** @addtogroup STM32L152D_EVAL_FSMC_NOR * @{ */ /** @defgroup STM32L152D_EVAL_FSMC_NOR_Exported_Types * @{ */ typedef struct { uint16_t Manufacturer_Code; uint16_t Device_Code1; uint16_t Device_Code2; uint16_t Device_Code3; }NOR_IDTypeDef; /* NOR Status */ typedef enum { NOR_SUCCESS = 0, NOR_ONGOING, NOR_ERROR, NOR_TIMEOUT }NOR_Status; /** * @} */ /** @defgroup STM32L152D_EVAL_FSMC_NOR_Exported_Constants * @{ */ /** * @} */ /** @defgroup STM32L152D_EVAL_FSMC_NOR_Exported_Macros * @{ */ /** * @} */ /** @defgroup STM32L152D_EVAL_FSMC_NOR_Exported_Functions * @{ */ void NOR_Init(void); void NOR_ReadID(NOR_IDTypeDef* NOR_ID); NOR_Status NOR_EraseBlock(uint32_t BlockAddr); NOR_Status NOR_EraseChip(void); NOR_Status NOR_WriteHalfWord(uint32_t WriteAddr, uint16_t Data); NOR_Status NOR_WriteBuffer(uint16_t* pBuffer, uint32_t WriteAddr, uint32_t NumHalfwordToWrite); NOR_Status NOR_ProgramBuffer(uint16_t* pBuffer, uint32_t WriteAddr, uint32_t NumHalfwordToWrite); uint16_t NOR_ReadHalfWord(uint32_t ReadAddr); void NOR_ReadBuffer(uint16_t* pBuffer, uint32_t ReadAddr, uint32_t NumHalfwordToRead); NOR_Status NOR_ReturnToReadMode(void); NOR_Status NOR_Reset(void); NOR_Status NOR_GetStatus(uint32_t Timeout); #ifdef __cplusplus } #endif #endif /* __STM32L152D_EVAL_FSMC_NOR_H */ /** * @} */ /** * @} */ /** * @} */ /** * @} */ /** * @} */ /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/