STM32访问外部存储器-NOR-Flash
基本说明
STM32访问外部存储器是需要配置FSMC的相关函数,在STM32固件库函数说明的中文翻译版中并没有这部分的说明,因此需要参考库函数的相关说明和库中自带的例程。
以下内容来自AN2784应用笔记:
2 与非总线复用模式的异步16位NOR闪存接口
2.1
FSMC配置
控制一个NOR闪存存储器,需要FSMC提供下述功能:
●
选择合适的存储块映射NOR闪存存储器:共有4个独立的存储块可以用于与NOR闪存、SRAM和PSRAM存储器接口,每个存储块都有一个专用的片选管脚。
●
使用或禁止地址/数据总线的复用功能。
●
选择所用的存储器类型:NOR闪存、SRAM或PSRAM。
●
定义外部存储器的数据总线宽度:8或16位。
●
使用或关闭同步NOR闪存存储器的突发访问模式。
●
配置等待信号的使用:开启或关闭,极性设置,时序配置。
●
使用或关闭扩展模式:扩展模式用于访问那些具有不同读写操作时序的存储器。
因为NOR闪存/SRAM控制器可以支持异步和同步存储器,用户只须根据存储器的参数配置使用到的参数。
FSMC提供了一些可编程的参数,可以正确地与外部存储器接口。依存储器类型的不同,有些参数是不需要的。
当使用一个外部异步存储器时,用户必须按照存储器的数据手册给出的时序数据,计算和设置下列参数:
●
ADDSET:地址建立时间
●
ADDHOLD:地址保持时间
●
DATAST:数据建立时间
●
ACCMOD:访问模式 这个参数允许 FSMC可以灵活地访问多种异步的静态存储器。共有4种扩展模式允许以不同的时序分别读写存储器。 在扩展模式下,FSMC_BTR用于配置读操作,FSMC_BWR用于配置写操作。(译注:如果读时序与写时序相同,只须使用FSMC_BTR即可。)
如果使用了同步的存储器,用户必须计算和设置下述参数:
●
CLKdiv:时钟分频系数
●
DATLAT:数据延时
如果存储器支持的话,NOR闪存的读操作可以是同步的,而写操作仍然是异步的。
当对一个同步的NOR闪存编程时,存储器会自动地在同步与异步之间切换;因此,必须正确地设置所有的参数
程序分析
- /*-- FSMC Configuration ----------------------------------------------------*/
- p.FSMC_AddressSetupTime = 0x05; /*ADDSET 地址建立时间*/
- p.FSMC_AddressHoldTime = 0x00; /*ADDHOLD 地址保持时间*/
- p.FSMC_DataSetupTime = 0x07; /*DATAST 数据建立时间*/
- p.FSMC_BusTurnAroundDuration = 0x00; /*BUSTURN 总线返转时间*/
- p.FSMC_CLKDivision = 0x00; /*CLKdiv 时钟分频*/
- p.FSMC_DataLatency = 0x00; /*DATLAT 数据保持时间*/
- p.FSMC_AccessMode = FSMC_AccessMode_B; /*访问模式*/
- /*NOR/SRAM的存储块,共4个选项*/
- FSMC_NORSRAMInitStructure.FSMC_Bank = FSMC_Bank1_NORSRAM2;
- /*是否选择地址和数据复用数据线*/
- FSMC_NORSRAMInitStructure.FSMC_DataAddressMux = FSMC_DataAddressMux_Disable;
- /*连接到相应存储块的外部存储器类型*/
- FSMC_NORSRAMInitStructure.FSMC_MemoryType = FSMC_MemoryType_NOR;
- /*存储器数据总线宽度*/
- FSMC_NORSRAMInitStructure.FSMC_MemoryDataWidth = FSMC_MemoryDataWidth_16b;
- /*使能或关闭同步NOR闪存存储器的突发访问模式设置是否使用迸发访问模式(应该就是连续读写模式吧)*/
- FSMC_NORSRAMInitStructure.FSMC_BurstAccessMode = FSMC_BurstAccessMode_Disable;
- /*设置WAIT信号的有效电平*/
- FSMC_NORSRAMInitStructure.FSMC_WaitSignalPolarity = FSMC_WaitSignalPolarity_Low;
- /*设置是否使用环回模式*/
- FSMC_NORSRAMInitStructure.FSMC_WrapMode = FSMC_WrapMode_Disable;
- /*设置WAIT信号有效时机*/
- FSMC_NORSRAMInitStructure.FSMC_WaitSignalActive = FSMC_WaitSignalActive_BeforeWaitState;
- /*设定是否使能写操作*/
- FSMC_NORSRAMInitStructure.FSMC_WriteOperation = FSMC_WriteOperation_Enable;
- /*设定是否使用WAIT信号*/
- FSMC_NORSRAMInitStructure.FSMC_WaitSignal = FSMC_WaitSignal_Disable;
- /*使能或关闭扩展模式,扩展模式用于访问具有不同读写操作时序的存储器,设定是否使用单独的写时序*/
- FSMC_NORSRAMInitStructure.FSMC_ExtendedMode = FSMC_ExtendedMode_Disable;
- /*设定是否使用异步等待信号*/
- FSMC_NORSRAMInitStructure.FSMC_AsyncWait = FSMC_AsyncWait_Disable;
- /*设定是否使用迸发写模式*/
- FSMC_NORSRAMInitStructure.FSMC_WriteBurst = FSMC_WriteBurst_Disable;
- /*设定读写时序*/
- FSMC_NORSRAMInitStructure.FSMC_ReadWriteTimingStruct = &p; //
- FSMC_NORSRAMInitStructure.FSMC_WriteTimingStruct = &p; //
- FSMC_NORSRAMInit(&FSMC_NORSRAMInitStructure); //
- /* Enable FSMC Bank1_NOR Bank */
- FSMC_NORSRAMCmd(FSMC_Bank1_NORSRAM2, ENABLE); //
- }
实际例程
以下例程来自 stm3210e_eval_fsmc_nor.c具体信息参加固件库中源文件。
- /**
- ******************************************************************************
- * @file stm3210e_eval_fsmc_nor.c
- * @author MCD Application Team
- * @version V4.3.0
- * @date 10/15/2010
- * @brief This file provides a set of functions needed to drive the M29W128FL,
- * M29W128GL and S29GL128P NOR memories mounted on STM3210E-EVAL board.
- ******************************************************************************
- * @copy
- *
- * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
- * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
- * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
- * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
- * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
- * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
- *
- * <h2><center>? COPYRIGHT 2010 STMicroelectronics</center></h2>
- */
- /* Includes ------------------------------------------------------------------*/
- #include "stm3210e_eval_fsmc_nor.h"
- /** @addtogroup Utilities
- * @{
- */
- /** @addtogroup STM32_EVAL
- * @{
- */
- /** @addtogroup STM3210E_EVAL
- * @{
- */
- /** @addtogroup STM3210E_EVAL_FSMC_NOR
- * @brief This file provides a set of functions needed to drive the M29W128FL,
- * M29W128GL and S29GL128P NOR memories mounted on STM3210E-EVAL board.
- * @{
- */
- /** @defgroup STM3210E_EVAL_FSMC_NOR_Private_Types
- * @{
- */
- /**
- * @}
- */
- /** @defgroup STM3210E_EVAL_FSMC_NOR_Private_Defines
- * @{
- */
- /**
- * @brief FSMC Bank 1 NOR/SRAM2
- */
- #define Bank1_NOR2_ADDR ((uint32_t)0x64000000)
- /* Delay definition */
- #define BlockErase_Timeout ((uint32_t)0x00A00000)
- #define ChipErase_Timeout ((uint32_t)0x30000000)
- #define Program_Timeout ((uint32_t)0x00001400)
- /**
- * @}
- */
- /** @defgroup STM3210E_EVAL_FSMC_NOR_Private_Macros
- * @{
- */
- #define ADDR_SHIFT(A) (Bank1_NOR2_ADDR + (2 * (A)))
- #define NOR_WRITE(Address, Data) (*(__IO uint16_t *)(Address) = (Data))
- /**
- * @}
- */
- /** @defgroup STM3210E_EVAL_FSMC_NOR_Private_Variables
- * @{
- */
- /**
- * @}
- */
- /** @defgroupSTM3210E_EVAL_FSMC_NOR_Private_Function_Prototypes
- * @{
- */
- /**
- * @}
- */
- /** @defgroup STM3210E_EVAL_FSMC_NOR_Private_Functions
- * @{
- */
- /**
- * @brief Configures the FSMC and GPIOs to interface with the NOR memory.
- * This function must be called before any write/read operation
- * on the NOR.
- * @param None
- * @retval None
- */
- void NOR_Init(void)
- {
- FSMC_NORSRAMInitTypeDef FSMC_NORSRAMInitStructure;
- FSMC_NORSRAMTimingInitTypeDef p;
- GPIO_InitTypeDef GPIO_InitStructure;
- RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOD | RCC_APB2Periph_GPIOE |
- RCC_APB2Periph_GPIOF | RCC_APB2Periph_GPIOG, ENABLE);
- /*-- GPIO Configuration ------------------------------------------------------*/
- /*!< NOR Data lines configuration */
- GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0 | GPIO_Pin_1 | GPIO_Pin_8 | GPIO_Pin_9 |
- GPIO_Pin_10 | GPIO_Pin_14 | GPIO_Pin_15;
- GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
- GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
- GPIO_Init(GPIOD, &GPIO_InitStructure);
- GPIO_InitStructure.GPIO_Pin = GPIO_Pin_7 | GPIO_Pin_8 | GPIO_Pin_9 | GPIO_Pin_10 |
- GPIO_Pin_11 | GPIO_Pin_12 | GPIO_Pin_13 |
- GPIO_Pin_14 | GPIO_Pin_15;
- GPIO_Init(GPIOE, &GPIO_InitStructure);
- /*!< NOR Address lines configuration */
- GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0 | GPIO_Pin_1 | GPIO_Pin_2 | GPIO_Pin_3 |
- GPIO_Pin_4 | GPIO_Pin_5 | GPIO_Pin_12 | GPIO_Pin_13 |
- GPIO_Pin_14 | GPIO_Pin_15;
- GPIO_Init(GPIOF, &GPIO_InitStructure);
- GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0 | GPIO_Pin_1 | GPIO_Pin_2 |
- GPIO_Pin_3 | GPIO_Pin_4 | GPIO_Pin_5;
- GPIO_Init(GPIOG, &GPIO_InitStructure);
- GPIO_InitStructure.GPIO_Pin = GPIO_Pin_11 | GPIO_Pin_12 | GPIO_Pin_13;
- GPIO_Init(GPIOD, &GPIO_InitStructure);
- GPIO_InitStructure.GPIO_Pin = GPIO_Pin_3 | GPIO_Pin_4 | GPIO_Pin_5 | GPIO_Pin_6;
- GPIO_Init(GPIOE, &GPIO_InitStructure);
- /*!< NOE and NWE configuration */
- GPIO_InitStructure.GPIO_Pin = GPIO_Pin_4 | GPIO_Pin_5;
- GPIO_Init(GPIOD, &GPIO_InitStructure);
- /*!< NE2 configuration */
- GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
- GPIO_Init(GPIOG, &GPIO_InitStructure);
- /*!< Configure PD6 for NOR memory Ready/Busy signal */
- GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6;
- GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
- GPIO_Init(GPIOD, &GPIO_InitStructure);
- /*-- FSMC Configuration ----------------------------------------------------*/
- p.FSMC_AddressSetupTime = 0x02;
- p.FSMC_AddressHoldTime = 0x00;
- p.FSMC_DataSetupTime = 0x05;
- p.FSMC_BusTurnAroundDuration = 0x00;
- p.FSMC_CLKDivision = 0x00;
- p.FSMC_DataLatency = 0x00;
- p.FSMC_AccessMode = FSMC_AccessMode_B;
- FSMC_NORSRAMInitStructure.FSMC_Bank = FSMC_Bank1_NORSRAM2;
- FSMC_NORSRAMInitStructure.FSMC_DataAddressMux = FSMC_DataAddressMux_Disable;
- FSMC_NORSRAMInitStructure.FSMC_MemoryType = FSMC_MemoryType_NOR;
- FSMC_NORSRAMInitStructure.FSMC_MemoryDataWidth = FSMC_MemoryDataWidth_16b;
- FSMC_NORSRAMInitStructure.FSMC_BurstAccessMode = FSMC_BurstAccessMode_Disable;
- FSMC_NORSRAMInitStructure.FSMC_AsynchronousWait = FSMC_AsynchronousWait_Disable;
- FSMC_NORSRAMInitStructure.FSMC_WaitSignalPolarity = FSMC_WaitSignalPolarity_Low;
- FSMC_NORSRAMInitStructure.FSMC_WrapMode = FSMC_WrapMode_Disable;
- FSMC_NORSRAMInitStructure.FSMC_WaitSignalActive = FSMC_WaitSignalActive_BeforeWaitState;
- FSMC_NORSRAMInitStructure.FSMC_WriteOperation = FSMC_WriteOperation_Enable;
- FSMC_NORSRAMInitStructure.FSMC_WaitSignal = FSMC_WaitSignal_Disable;
- FSMC_NORSRAMInitStructure.FSMC_ExtendedMode = FSMC_ExtendedMode_Disable;
- FSMC_NORSRAMInitStructure.FSMC_WriteBurst = FSMC_WriteBurst_Disable;
- FSMC_NORSRAMInitStructure.FSMC_ReadWriteTimingStruct = &p;
- FSMC_NORSRAMInitStructure.FSMC_WriteTimingStruct = &p;
- FSMC_NORSRAMInit(&FSMC_NORSRAMInitStructure);
- /*!< Enable FSMC Bank1_NOR Bank */
- FSMC_NORSRAMCmd(FSMC_Bank1_NORSRAM2, ENABLE);
- }
- /**
- * @brief Reads NOR memory's Manufacturer and Device Code.
- * @param NOR_ID: pointer to a NOR_IDTypeDef structure which will hold the
- * Manufacturer and Device Code.
- * @retval None
- */
- void NOR_ReadID(NOR_IDTypeDef* NOR_ID)
- {
- NOR_WRITE(ADDR_SHIFT(0x0555), 0x00AA);
- NOR_WRITE(ADDR_SHIFT(0x02AA), 0x0055);
- NOR_WRITE(ADDR_SHIFT(0x0555), 0x0090);
- NOR_ID->Manufacturer_Code = *(__IO uint16_t *) ADDR_SHIFT(0x0000);
- NOR_ID->Device_Code1 = *(__IO uint16_t *) ADDR_SHIFT(0x0001);
- NOR_ID->Device_Code2 = *(__IO uint16_t *) ADDR_SHIFT(0x000E);
- NOR_ID->Device_Code3 = *(__IO uint16_t *) ADDR_SHIFT(0x000F);
- }
- /**
- * @brief Erases the specified Nor memory block.
- * @param BlockAddr: address of the block to erase.
- * @retval NOR_Status: The returned value can be: NOR_SUCCESS, NOR_ERROR
- * or NOR_TIMEOUT
- */
- NOR_Status NOR_EraseBlock(uint32_t BlockAddr)
- {
- NOR_WRITE(ADDR_SHIFT(0x0555), 0x00AA);
- NOR_WRITE(ADDR_SHIFT(0x02AA), 0x0055);
- NOR_WRITE(ADDR_SHIFT(0x0555), 0x0080);
- NOR_WRITE(ADDR_SHIFT(0x0555), 0x00AA);
- NOR_WRITE(ADDR_SHIFT(0x02AA), 0x0055);
- NOR_WRITE((Bank1_NOR2_ADDR + BlockAddr), 0x30);
- return (NOR_GetStatus(BlockErase_Timeout));
- }
- /**
- * @brief Erases the entire chip.
- * @param None
- * @retval NOR_Status: The returned value can be: NOR_SUCCESS, NOR_ERROR
- * or NOR_TIMEOUT
- */
- NOR_Status NOR_EraseChip(void)
- {
- NOR_WRITE(ADDR_SHIFT(0x0555), 0x00AA);
- NOR_WRITE(ADDR_SHIFT(0x02AA), 0x0055);
- NOR_WRITE(ADDR_SHIFT(0x0555), 0x0080);
- NOR_WRITE(ADDR_SHIFT(0x0555), 0x00AA);
- NOR_WRITE(ADDR_SHIFT(0x02AA), 0x0055);
- NOR_WRITE(ADDR_SHIFT(0x0555), 0x0010);
- return (NOR_GetStatus(ChipErase_Timeout));
- }
- /**
- * @brief Writes a half-word to the NOR memory.
- * @param WriteAddr: NOR memory internal address to write to.
- * @param Data: Data to write.
- * @retval NOR_Status: The returned value can be: NOR_SUCCESS, NOR_ERROR
- * or NOR_TIMEOUT
- */
- NOR_Status NOR_WriteHalfWord(uint32_t WriteAddr, uint16_t Data)
- {
- NOR_WRITE(ADDR_SHIFT(0x0555), 0x00AA);
- NOR_WRITE(ADDR_SHIFT(0x02AA), 0x0055);
- NOR_WRITE(ADDR_SHIFT(0x0555), 0x00A0);
- NOR_WRITE((Bank1_NOR2_ADDR + WriteAddr), Data);
- return (NOR_GetStatus(Program_Timeout));
- }
- /**
- * @brief Writes a half-word buffer to the FSMC NOR memory.
- * @param pBuffer: pointer to buffer.
- * @param WriteAddr: NOR memory internal address from which the data will be
- * written.
- * @param NumHalfwordToWrite: number of Half words to write.
- * @retval NOR_Status: The returned value can be: NOR_SUCCESS, NOR_ERROR
- * or NOR_TIMEOUT
- */
- NOR_Status NOR_WriteBuffer(uint16_t* pBuffer, uint32_t WriteAddr, uint32_t NumHalfwordToWrite)
- {
- NOR_Status status = NOR_ONGOING;
- do
- {
- /*!< Transfer data to the memory */
- status = NOR_WriteHalfWord(WriteAddr, *pBuffer++);
- WriteAddr = WriteAddr + 2;
- NumHalfwordToWrite--;
- }
- while((status == NOR_SUCCESS) && (NumHalfwordToWrite != 0));
- return (status);
- }
- /**
- * @brief Writes a half-word buffer to the FSMC NOR memory. This function
- * must be used only with S29GL128P NOR memory.
- * @param pBuffer: pointer to buffer.
- * @param WriteAddr: NOR memory internal address from which the data will be
- * written.
- * @param NumHalfwordToWrite: number of Half words to write.
- * The maximum allowed value is 32 Half words (64 bytes).
- * @retval NOR_Status: The returned value can be: NOR_SUCCESS, NOR_ERROR
- * or NOR_TIMEOUT
- */
- NOR_Status NOR_ProgramBuffer(uint16_t* pBuffer, uint32_t WriteAddr, uint32_t NumHalfwordToWrite)
- {
- uint32_t lastloadedaddress = 0x00;
- uint32_t currentaddress = 0x00;
- uint32_t endaddress = 0x00;
- /*!< Initialize variables */
- currentaddress = WriteAddr;
- endaddress = WriteAddr + NumHalfwordToWrite - 1;
- lastloadedaddress = WriteAddr;
- /*!< Issue unlock command sequence */
- NOR_WRITE(ADDR_SHIFT(0x00555), 0x00AA);
- NOR_WRITE(ADDR_SHIFT(0x02AA), 0x0055);
- /*!< Write Write Buffer Load Command */
- NOR_WRITE(ADDR_SHIFT(WriteAddr), 0x0025);
- NOR_WRITE(ADDR_SHIFT(WriteAddr), (NumHalfwordToWrite - 1));
- /*!< Load Data into NOR Buffer */
- while(currentaddress <= endaddress)
- {
- /*!< Store last loaded address & data value (for polling) */
- lastloadedaddress = currentaddress;
- NOR_WRITE(ADDR_SHIFT(currentaddress), *pBuffer++);
- currentaddress += 1;
- }
- NOR_WRITE(ADDR_SHIFT(lastloadedaddress), 0x29);
- return(NOR_GetStatus(Program_Timeout));
- }
- /**
- * @brief Reads a half-word from the NOR memory.
- * @param ReadAddr: NOR memory internal address to read from.
- * @retval Half-word read from the NOR memory
- */
- uint16_t NOR_ReadHalfWord(uint32_t ReadAddr)
- {
- NOR_WRITE(ADDR_SHIFT(0x00555), 0x00AA);
- NOR_WRITE(ADDR_SHIFT(0x002AA), 0x0055);
- NOR_WRITE((Bank1_NOR2_ADDR + ReadAddr), 0x00F0 );
- return (*(__IO uint16_t *)((Bank1_NOR2_ADDR + ReadAddr)));
- }
- /**
- * @brief Reads a block of data from the FSMC NOR memory.
- * @param pBuffer: pointer to the buffer that receives the data read from the
- * NOR memory.
- * @param ReadAddr: NOR memory internal address to read from.
- * @param NumHalfwordToRead : number of Half word to read.
- * @retval None
- */
- void NOR_ReadBuffer(uint16_t* pBuffer, uint32_t ReadAddr, uint32_t NumHalfwordToRead)
- {
- NOR_WRITE(ADDR_SHIFT(0x0555), 0x00AA);
- NOR_WRITE(ADDR_SHIFT(0x02AA), 0x0055);
- NOR_WRITE((Bank1_NOR2_ADDR + ReadAddr), 0x00F0);
- for(; NumHalfwordToRead != 0x00; NumHalfwordToRead--) /*!< while there is data to read */
- {
- /*!< Read a Halfword from the NOR */
- *pBuffer++ = *(__IO uint16_t *)((Bank1_NOR2_ADDR + ReadAddr));
- ReadAddr = ReadAddr + 2;
- }
- }
- /**
- * @brief Returns the NOR memory to Read mode.
- * @param None
- * @retval NOR_SUCCESS
- */
- NOR_Status NOR_ReturnToReadMode(void)
- {
- NOR_WRITE(Bank1_NOR2_ADDR, 0x00F0);
- return (NOR_SUCCESS);
- }
- /**
- * @brief Returns the NOR memory to Read mode and resets the errors in the NOR
- * memory Status Register.
- * @param None
- * @retval NOR_SUCCESS
- */
- NOR_Status NOR_Reset(void)
- {
- NOR_WRITE(ADDR_SHIFT(0x00555), 0x00AA);
- NOR_WRITE(ADDR_SHIFT(0x002AA), 0x0055);
- NOR_WRITE(Bank1_NOR2_ADDR, 0x00F0);
- return (NOR_SUCCESS);
- }
- /**
- * @brief Returns the NOR operation status.
- * @param Timeout: NOR progamming Timeout
- * @retval NOR_Status: The returned value can be: NOR_SUCCESS, NOR_ERROR
- * or NOR_TIMEOUT
- */
- NOR_Status NOR_GetStatus(uint32_t Timeout)
- {
- uint16_t val1 = 0x00, val2 = 0x00;
- NOR_Status status = NOR_ONGOING;
- uint32_t timeout = Timeout;
- /*!< Poll on NOR memory Ready/Busy signal ----------------------------------*/
- while((GPIO_ReadInputDataBit(GPIOD, GPIO_Pin_6) != RESET) && (timeout > 0))
- {
- timeout--;
- }
- timeout = Timeout;
- while((GPIO_ReadInputDataBit(GPIOD, GPIO_Pin_6) == RESET) && (timeout > 0))
- {
- timeout--;
- }
- /*!< Get the NOR memory operation status -----------------------------------*/
- while((Timeout != 0x00) && (status != NOR_SUCCESS))
- {
- Timeout--;
- /*!< Read DQ6 and DQ5 */
- val1 = *(__IO uint16_t *)(Bank1_NOR2_ADDR);
- val2 = *(__IO uint16_t *)(Bank1_NOR2_ADDR);
- /*!< If DQ6 did not toggle between the two reads then return NOR_Success */
- if((val1 & 0x0040) == (val2 & 0x0040))
- {
- return NOR_SUCCESS;
- }
- if((val1 & 0x0020) != 0x0020)
- {
- status = NOR_ONGOING;
- }
- val1 = *(__IO uint16_t *)(Bank1_NOR2_ADDR);
- val2 = *(__IO uint16_t *)(Bank1_NOR2_ADDR);
- if((val1 & 0x0040) == (val2 & 0x0040))
- {
- return NOR_SUCCESS;
- }
- else if((val1 & 0x0020) == 0x0020)
- {
- return NOR_ERROR;
- }
- }
- if(Timeout == 0x00)
- {
- status = NOR_TIMEOUT;
- }
- /*!< Return the operation status */
- return (status);
- }
- /**
- * @}
- */
- /**
- * @}
- */
- /**
- * @}
- */
- /**
- * @}
- */
- /**
- * @}
- */
- /******************* (C) COPYRIGHT 2010 STMicroelectronics *****END OF FILE****/
★emouse 思·睿博客文章★ 原创文章转载请注明:http://emouse.cnblogs.com
#ifdef,#else,#endif,#if用法详解
预处理就是在进行编译的第一遍词法扫描和语法分析之前所作的工作。说白了,就是对源文件进行编译前,先对预处理部分进行处理,然后对处理后的代码进行编译。这样做的好处是,经过处理后的代码,将会变的很精短。
关于预处理命令中的文件包含(#i nclude),宏定义(#define),书上已经有了详细的说明,在这里就不详述了。这里主要是对条件编译(#ifdef,#else,#endif,#if等)进行说明。以下分3种情况:
1:情况1:
#ifdef _XXXX
...程序段1...
#else
...程序段2...
#endif
这表明如果标识符_XXXX已被#define命令定义过则对程序段1进行编译;否则对程序段2进行编译。
例:
#define NUM
......
......
......
#ifdef NUM
printf("之前NUM有过定义啦!:) \n");
#else
printf("之前NUM没有过定义!:( \n");
#endif
}
如果程序开头有#define NUM这行,即NUM有定义,碰到下面#ifdef NUM的时候,当然执行第一个printf。否则第二个printf将被执行。
我认为,用这种,可以很方便的开启/关闭整个程序的某项特定功能。
2:情况2:
#ifndef _XXXX
...程序段1...
#else
...程序段2...
#endif
这里使用了#ifndef,表示的是if not def。当然是和#ifdef相反的状况(如果没有定义了标识符_XXXX,那么执行程序段1,否则执行程序段2)。
3:情况3:
#if 常量
...程序段1...
#else
...程序段2...
#endif
这里表示,如果常量为真(非0,随便什么数字,只要不是0),就执行程序段1,否则执行程序段2。
我认为,这种方法可以将测试代码加进来。当需要开启测试的时候,只要将常量变1就好了。而不要测试的时候,只要将常量变0。
# ifdef #ifndef 等用法 文件中的#ifndef
头件的中的#ifndef,这是一个很关键的东西。比如你有两个C文件,这两个C文件都include了同一个头文件。而编译时,这两个C文件要一同编译成一个可运行文件,于是问题来了,大量的声明冲突。
还是把头文件的内容都放在#ifndef和#endif中吧。不管你的头文件会不会被多个文件引用,你都要加上这个。一般格式是这样的:
#ifndef <标识>
#define <标识>
......
......
#endif
<标识>在理论上来说可以是自由命名的,但每个头文件的这个“标识”都应该是唯一的。标识的命名规则一般是头文件名全大写,前后加下划线,并把文件名中的“.”也变成下划线,如:stdio.h
#ifndef _STDIO_H_
#define _STDIO_H_
......
#endif
2.在#ifndef中定义变量出现的问题(一般不定义在#ifndef中)。
#ifndef AAA
#define AAA
...
int i;
...
#endif
里面有一个变量定义
在vc中链接时就出现了i重复定义的错误,而在c中成功编译。
结论:
(1).当你第一个使用这个头的.cpp文件生成.obj的时候,int i 在里面定义了当另外一个使用这个的.cpp再次[单独]生成.obj的时候,int i 又被定义然后两个obj被另外一个.cpp也include 这个头的,连接在一起,就会出现重复定义.
(2).把源程序文件扩展名改成.c后,VC按照C语言的语法对源程序进行编译,而不是C++。在C语言中,若是遇到多个int i,则自动认为其中一个是定义,其他的是声明。
(3).C语言和C++语言连接结果不同,可能(猜测)时在进行编译的时候,C++语言将全局
变量默认为强符号,所以连接出错。C语言则依照是否初始化进行强弱的判断的。(参考)
解决方法:
(1).把源程序文件扩展名改成.c。
(2).推荐解决方案:
.h中只声明 extern int i;在.cpp中定义
#ifndef __X_H__
#define __X_H__
extern int i;
#endif //__X_H__
int i;
注意问题:
(1).变量一般不要定义在.h文件中。
ifndef/define/endif的用法与实例分析
用法:
.h文件,如下:
#ifndef XX_H
#define XX_H
……
#endif
这样如果有两个地方都包含这个头文件,就不会出现两次包含的情况,因为在第二次包含时XX_H已经有定义了,所以就不再 include了。
-----------------------------------------------------------------------------------------------------------------------------------
#ifndef GRAPHICS_H // 防止graphics.h被重复引用
#define GRAPHICS_H
#include // 引用标准库的头文件
…
#include “myheader.h” // 引用非标准库的头文件
…
void Function1(…); // 全局函数声明
…
class Box // 类结构声明
{
…
};
#endif
-----------------------------------------------------------------------------------------------------------------------------------
假设你的工程里面有4个文件,分别是a.cpp,b.h,c.h,d.h
a.cpp的头部是:
#include "b.h "
#include "c.h "
b.h和c.h的头部都是:
#include "d.h "
而d.h里面有class D的定义。
这样一来,
编译器编译a.cpp的时候,先根据#include "b.h "去编译b.h这个问题,再根据b.h里面的#include "d.h ",去编译d.h的这个文件,这样就把d.h里面的class D编译了;然后再根据a.cpp的第二句#include "c.h ",去编译c.h,最终还是会找到的d.h里面的class D,但是class D之前已经编译过了,所以就会报重定义错误。
加上ifndef/define/endif,就可以防止这种重定义错误。
-----------------------------------------------------------------------------------------------------------------------------------
1.比如你有两个C文件,这两个C文件都include了同一个头文件。而编译时,这两个C文件要一同编译成一个可运行文件,于是问题来了,大量的声明冲突。还是把头文件的内容都放在#ifndef和#endif中吧。
不管你的头文件会不会被多个文件引用,你都要加上这个。
一般格式是这样的:
#ifndef <标识>
#define <标识>
......
......
#endif <标识>
在理论上来说可以是自由命名的,但每个头文件的这个“标识”都应该是唯一的。标识的命名规则一般是头文件名全大写,前后加下划线,并把文件名中的“.”也变成下划线,如:stdio.h
#ifndef _STDIO_H_
#define _STDIO_H_
......
#endif
2.在#ifndef中定义变量出现的问题(一般不定义在#ifndef中)。
#ifndef AAA
#define AAA
...
int i;
...
#endif
里面有一个变量定义在vc中链接时就出现了i重复定义的错误,而在c中成功编译。
原因:
(1).当你第一个使用这个头的.cpp文件生成.obj的时候,int i 在里面定义了当另外一个使用这个的.cpp再次[单独]生成.obj的时候,int i 又被定义然后两个obj被另外一个.cpp也include 这个头的,连接在一起,就会出现重复定义。
(2).把源程序文件扩展名改成.c后,VC按照C语言的语法对源程序进行编译,而不是C++。在C语言中,若是遇到多个int i,则自动认为其中一个是定义,其他的是声明。
(3).C语言和C++语言连接结果不同,可能(猜测)时在进行编译的时候,C++语言将全局变量默认为强符号,所以连接出错。C语言则依照是否初始化进行强弱的判断的。
参考解决方法:
(1).把源程序文件扩展名改成.c。
(2).推荐解决方案:.h中只声明 extern int i;
在.cpp中定义
#ifndef __X_H__
#define __X_H__
extern int i;
#endif //__X_H__ int i;
注意问题:变量一般不要定义在.h文件中。