mbed(SerialHalfDuplex入り)
Fork of mbed by
TARGET_NUCLEO_F334R8/stm32f3xx_hal_nand.h@98:01a414ca7d6d, 2015-04-08 (annotated)
- Committer:
- yusuke_kyo
- Date:
- Wed Apr 08 08:04:18 2015 +0000
- Revision:
- 98:01a414ca7d6d
- Parent:
- 92:4fc01daae5a5
remove SerialHalfDuplex.h
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
bogdanm | 92:4fc01daae5a5 | 1 | /** |
bogdanm | 92:4fc01daae5a5 | 2 | ****************************************************************************** |
bogdanm | 92:4fc01daae5a5 | 3 | * @file stm32f3xx_hal_nand.h |
bogdanm | 92:4fc01daae5a5 | 4 | * @author MCD Application Team |
bogdanm | 92:4fc01daae5a5 | 5 | * @version V1.1.0 |
bogdanm | 92:4fc01daae5a5 | 6 | * @date 12-Sept-2014 |
bogdanm | 92:4fc01daae5a5 | 7 | * @brief Header file of NAND HAL module. |
bogdanm | 92:4fc01daae5a5 | 8 | ****************************************************************************** |
bogdanm | 92:4fc01daae5a5 | 9 | * @attention |
bogdanm | 92:4fc01daae5a5 | 10 | * |
bogdanm | 92:4fc01daae5a5 | 11 | * <h2><center>© COPYRIGHT(c) 2014 STMicroelectronics</center></h2> |
bogdanm | 92:4fc01daae5a5 | 12 | * |
bogdanm | 92:4fc01daae5a5 | 13 | * Redistribution and use in source and binary forms, with or without modification, |
bogdanm | 92:4fc01daae5a5 | 14 | * are permitted provided that the following conditions are met: |
bogdanm | 92:4fc01daae5a5 | 15 | * 1. Redistributions of source code must retain the above copyright notice, |
bogdanm | 92:4fc01daae5a5 | 16 | * this list of conditions and the following disclaimer. |
bogdanm | 92:4fc01daae5a5 | 17 | * 2. Redistributions in binary form must reproduce the above copyright notice, |
bogdanm | 92:4fc01daae5a5 | 18 | * this list of conditions and the following disclaimer in the documentation |
bogdanm | 92:4fc01daae5a5 | 19 | * and/or other materials provided with the distribution. |
bogdanm | 92:4fc01daae5a5 | 20 | * 3. Neither the name of STMicroelectronics nor the names of its contributors |
bogdanm | 92:4fc01daae5a5 | 21 | * may be used to endorse or promote products derived from this software |
bogdanm | 92:4fc01daae5a5 | 22 | * without specific prior written permission. |
bogdanm | 92:4fc01daae5a5 | 23 | * |
bogdanm | 92:4fc01daae5a5 | 24 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
bogdanm | 92:4fc01daae5a5 | 25 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
bogdanm | 92:4fc01daae5a5 | 26 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
bogdanm | 92:4fc01daae5a5 | 27 | * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE |
bogdanm | 92:4fc01daae5a5 | 28 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
bogdanm | 92:4fc01daae5a5 | 29 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
bogdanm | 92:4fc01daae5a5 | 30 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
bogdanm | 92:4fc01daae5a5 | 31 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
bogdanm | 92:4fc01daae5a5 | 32 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
bogdanm | 92:4fc01daae5a5 | 33 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
bogdanm | 92:4fc01daae5a5 | 34 | * |
bogdanm | 92:4fc01daae5a5 | 35 | ****************************************************************************** |
bogdanm | 92:4fc01daae5a5 | 36 | */ |
bogdanm | 92:4fc01daae5a5 | 37 | |
bogdanm | 92:4fc01daae5a5 | 38 | /* Define to prevent recursive inclusion -------------------------------------*/ |
bogdanm | 92:4fc01daae5a5 | 39 | #ifndef __STM32F3xx_HAL_NAND_H |
bogdanm | 92:4fc01daae5a5 | 40 | #define __STM32F3xx_HAL_NAND_H |
bogdanm | 92:4fc01daae5a5 | 41 | |
bogdanm | 92:4fc01daae5a5 | 42 | #ifdef __cplusplus |
bogdanm | 92:4fc01daae5a5 | 43 | extern "C" { |
bogdanm | 92:4fc01daae5a5 | 44 | #endif |
bogdanm | 92:4fc01daae5a5 | 45 | |
bogdanm | 92:4fc01daae5a5 | 46 | /* Includes ------------------------------------------------------------------*/ |
bogdanm | 92:4fc01daae5a5 | 47 | #if defined(STM32F302xE) || defined(STM32F303xE) || defined(STM32F398xx) |
bogdanm | 92:4fc01daae5a5 | 48 | #include "stm32f3xx_ll_fmc.h" |
bogdanm | 92:4fc01daae5a5 | 49 | #endif /* STM32F302xE || STM32F303xE || STM32F398xx */ |
bogdanm | 92:4fc01daae5a5 | 50 | |
bogdanm | 92:4fc01daae5a5 | 51 | /** @addtogroup STM32F3xx_HAL_Driver |
bogdanm | 92:4fc01daae5a5 | 52 | * @{ |
bogdanm | 92:4fc01daae5a5 | 53 | */ |
bogdanm | 92:4fc01daae5a5 | 54 | |
bogdanm | 92:4fc01daae5a5 | 55 | /** @addtogroup NAND |
bogdanm | 92:4fc01daae5a5 | 56 | * @{ |
bogdanm | 92:4fc01daae5a5 | 57 | */ |
bogdanm | 92:4fc01daae5a5 | 58 | |
bogdanm | 92:4fc01daae5a5 | 59 | #if defined(STM32F302xE) || defined(STM32F303xE) || defined(STM32F398xx) |
bogdanm | 92:4fc01daae5a5 | 60 | |
bogdanm | 92:4fc01daae5a5 | 61 | /* Exported typedef ----------------------------------------------------------*/ |
bogdanm | 92:4fc01daae5a5 | 62 | /* Exported types ------------------------------------------------------------*/ |
bogdanm | 92:4fc01daae5a5 | 63 | /** @defgroup NAND_Exported_Types NAND Exported Types |
bogdanm | 92:4fc01daae5a5 | 64 | * @{ |
bogdanm | 92:4fc01daae5a5 | 65 | */ |
bogdanm | 92:4fc01daae5a5 | 66 | |
bogdanm | 92:4fc01daae5a5 | 67 | /** |
bogdanm | 92:4fc01daae5a5 | 68 | * @brief HAL NAND State structures definition |
bogdanm | 92:4fc01daae5a5 | 69 | */ |
bogdanm | 92:4fc01daae5a5 | 70 | typedef enum |
bogdanm | 92:4fc01daae5a5 | 71 | { |
bogdanm | 92:4fc01daae5a5 | 72 | HAL_NAND_STATE_RESET = 0x00, /*!< NAND not yet initialized or disabled */ |
bogdanm | 92:4fc01daae5a5 | 73 | HAL_NAND_STATE_READY = 0x01, /*!< NAND initialized and ready for use */ |
bogdanm | 92:4fc01daae5a5 | 74 | HAL_NAND_STATE_BUSY = 0x02, /*!< NAND internal process is ongoing */ |
bogdanm | 92:4fc01daae5a5 | 75 | HAL_NAND_STATE_ERROR = 0x03 /*!< NAND error state */ |
bogdanm | 92:4fc01daae5a5 | 76 | }HAL_NAND_StateTypeDef; |
bogdanm | 92:4fc01daae5a5 | 77 | |
bogdanm | 92:4fc01daae5a5 | 78 | /** |
bogdanm | 92:4fc01daae5a5 | 79 | * @brief NAND Memory electronic signature Structure definition |
bogdanm | 92:4fc01daae5a5 | 80 | */ |
bogdanm | 92:4fc01daae5a5 | 81 | typedef struct |
bogdanm | 92:4fc01daae5a5 | 82 | { |
bogdanm | 92:4fc01daae5a5 | 83 | /*<! NAND memory electronic signature maker and device IDs */ |
bogdanm | 92:4fc01daae5a5 | 84 | |
bogdanm | 92:4fc01daae5a5 | 85 | uint8_t Maker_Id; |
bogdanm | 92:4fc01daae5a5 | 86 | |
bogdanm | 92:4fc01daae5a5 | 87 | uint8_t Device_Id; |
bogdanm | 92:4fc01daae5a5 | 88 | |
bogdanm | 92:4fc01daae5a5 | 89 | uint8_t Third_Id; |
bogdanm | 92:4fc01daae5a5 | 90 | |
bogdanm | 92:4fc01daae5a5 | 91 | uint8_t Fourth_Id; |
bogdanm | 92:4fc01daae5a5 | 92 | }NAND_IDTypeDef; |
bogdanm | 92:4fc01daae5a5 | 93 | |
bogdanm | 92:4fc01daae5a5 | 94 | /** |
bogdanm | 92:4fc01daae5a5 | 95 | * @brief NAND Memory address Structure definition |
bogdanm | 92:4fc01daae5a5 | 96 | */ |
bogdanm | 92:4fc01daae5a5 | 97 | typedef struct |
bogdanm | 92:4fc01daae5a5 | 98 | { |
bogdanm | 92:4fc01daae5a5 | 99 | uint16_t Page; /*!< NAND memory Page address */ |
bogdanm | 92:4fc01daae5a5 | 100 | |
bogdanm | 92:4fc01daae5a5 | 101 | uint16_t Zone; /*!< NAND memory Zone address */ |
bogdanm | 92:4fc01daae5a5 | 102 | |
bogdanm | 92:4fc01daae5a5 | 103 | uint16_t Block; /*!< NAND memory Block address */ |
bogdanm | 92:4fc01daae5a5 | 104 | |
bogdanm | 92:4fc01daae5a5 | 105 | }NAND_AddressTypedef; |
bogdanm | 92:4fc01daae5a5 | 106 | |
bogdanm | 92:4fc01daae5a5 | 107 | /** |
bogdanm | 92:4fc01daae5a5 | 108 | * @brief NAND Memory info Structure definition |
bogdanm | 92:4fc01daae5a5 | 109 | */ |
bogdanm | 92:4fc01daae5a5 | 110 | typedef struct |
bogdanm | 92:4fc01daae5a5 | 111 | { |
bogdanm | 92:4fc01daae5a5 | 112 | uint32_t PageSize; /*!< NAND memory page (without spare area) size measured in K. bytes */ |
bogdanm | 92:4fc01daae5a5 | 113 | |
bogdanm | 92:4fc01daae5a5 | 114 | uint32_t SpareAreaSize; /*!< NAND memory spare area size measured in K. bytes */ |
bogdanm | 92:4fc01daae5a5 | 115 | |
bogdanm | 92:4fc01daae5a5 | 116 | uint32_t BlockSize; /*!< NAND memory block size number of pages */ |
bogdanm | 92:4fc01daae5a5 | 117 | |
bogdanm | 92:4fc01daae5a5 | 118 | uint32_t BlockNbr; /*!< NAND memory number of blocks */ |
bogdanm | 92:4fc01daae5a5 | 119 | |
bogdanm | 92:4fc01daae5a5 | 120 | uint32_t ZoneSize; /*!< NAND memory zone size measured in number of blocks */ |
bogdanm | 92:4fc01daae5a5 | 121 | }NAND_InfoTypeDef; |
bogdanm | 92:4fc01daae5a5 | 122 | |
bogdanm | 92:4fc01daae5a5 | 123 | /** |
bogdanm | 92:4fc01daae5a5 | 124 | * @brief NAND handle Structure definition |
bogdanm | 92:4fc01daae5a5 | 125 | */ |
bogdanm | 92:4fc01daae5a5 | 126 | typedef struct |
bogdanm | 92:4fc01daae5a5 | 127 | { |
bogdanm | 92:4fc01daae5a5 | 128 | FMC_NAND_TypeDef *Instance; /*!< Register base address */ |
bogdanm | 92:4fc01daae5a5 | 129 | |
bogdanm | 92:4fc01daae5a5 | 130 | FMC_NAND_InitTypeDef Init; /*!< NAND device control configuration parameters */ |
bogdanm | 92:4fc01daae5a5 | 131 | |
bogdanm | 92:4fc01daae5a5 | 132 | HAL_LockTypeDef Lock; /*!< NAND locking object */ |
bogdanm | 92:4fc01daae5a5 | 133 | |
bogdanm | 92:4fc01daae5a5 | 134 | __IO HAL_NAND_StateTypeDef State; /*!< NAND device access state */ |
bogdanm | 92:4fc01daae5a5 | 135 | |
bogdanm | 92:4fc01daae5a5 | 136 | NAND_InfoTypeDef Info; /*!< NAND characteristic information structure */ |
bogdanm | 92:4fc01daae5a5 | 137 | }NAND_HandleTypeDef; |
bogdanm | 92:4fc01daae5a5 | 138 | |
bogdanm | 92:4fc01daae5a5 | 139 | /** |
bogdanm | 92:4fc01daae5a5 | 140 | * @} |
bogdanm | 92:4fc01daae5a5 | 141 | */ |
bogdanm | 92:4fc01daae5a5 | 142 | |
bogdanm | 92:4fc01daae5a5 | 143 | /* Exported constants --------------------------------------------------------*/ |
bogdanm | 92:4fc01daae5a5 | 144 | /** @defgroup NAND_Exported_Constants NAND Exported Constants |
bogdanm | 92:4fc01daae5a5 | 145 | * @{ |
bogdanm | 92:4fc01daae5a5 | 146 | */ |
bogdanm | 92:4fc01daae5a5 | 147 | #define NAND_DEVICE1 ((uint32_t)0x70000000) |
bogdanm | 92:4fc01daae5a5 | 148 | #define NAND_DEVICE2 ((uint32_t)0x80000000) |
bogdanm | 92:4fc01daae5a5 | 149 | #define NAND_WRITE_TIMEOUT ((uint32_t)0x01000000) |
bogdanm | 92:4fc01daae5a5 | 150 | |
bogdanm | 92:4fc01daae5a5 | 151 | #define CMD_AREA ((uint32_t)(1<<16)) /* A16 = CLE high */ |
bogdanm | 92:4fc01daae5a5 | 152 | #define ADDR_AREA ((uint32_t)(1<<17)) /* A17 = ALE high */ |
bogdanm | 92:4fc01daae5a5 | 153 | |
bogdanm | 92:4fc01daae5a5 | 154 | #define NAND_CMD_AREA_A ((uint8_t)0x00) |
bogdanm | 92:4fc01daae5a5 | 155 | #define NAND_CMD_AREA_B ((uint8_t)0x01) |
bogdanm | 92:4fc01daae5a5 | 156 | #define NAND_CMD_AREA_C ((uint8_t)0x50) |
bogdanm | 92:4fc01daae5a5 | 157 | |
bogdanm | 92:4fc01daae5a5 | 158 | /* NAND memory status */ |
bogdanm | 92:4fc01daae5a5 | 159 | #define NAND_VALID_ADDRESS ((uint32_t)0x00000100) |
bogdanm | 92:4fc01daae5a5 | 160 | #define NAND_INVALID_ADDRESS ((uint32_t)0x00000200) |
bogdanm | 92:4fc01daae5a5 | 161 | #define NAND_TIMEOUT_ERROR ((uint32_t)0x00000400) |
bogdanm | 92:4fc01daae5a5 | 162 | #define NAND_BUSY ((uint32_t)0x00000000) |
bogdanm | 92:4fc01daae5a5 | 163 | #define NAND_ERROR ((uint32_t)0x00000001) |
bogdanm | 92:4fc01daae5a5 | 164 | #define NAND_READY ((uint32_t)0x00000040) |
bogdanm | 92:4fc01daae5a5 | 165 | |
bogdanm | 92:4fc01daae5a5 | 166 | /** |
bogdanm | 92:4fc01daae5a5 | 167 | * @} |
bogdanm | 92:4fc01daae5a5 | 168 | */ |
bogdanm | 92:4fc01daae5a5 | 169 | |
bogdanm | 92:4fc01daae5a5 | 170 | /* Exported macro ------------------------------------------------------------*/ |
bogdanm | 92:4fc01daae5a5 | 171 | /** @defgroup NAND_Exported_Macros NAND Exported Macros |
bogdanm | 92:4fc01daae5a5 | 172 | * @{ |
bogdanm | 92:4fc01daae5a5 | 173 | */ |
bogdanm | 92:4fc01daae5a5 | 174 | |
bogdanm | 92:4fc01daae5a5 | 175 | /** @brief Reset NAND handle state |
bogdanm | 92:4fc01daae5a5 | 176 | * @param __HANDLE__: specifies the NAND handle. |
bogdanm | 92:4fc01daae5a5 | 177 | * @retval None |
bogdanm | 92:4fc01daae5a5 | 178 | */ |
bogdanm | 92:4fc01daae5a5 | 179 | #define __HAL_NAND_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_NAND_STATE_RESET) |
bogdanm | 92:4fc01daae5a5 | 180 | |
bogdanm | 92:4fc01daae5a5 | 181 | /** |
bogdanm | 92:4fc01daae5a5 | 182 | * @brief NAND memory address computation. |
bogdanm | 92:4fc01daae5a5 | 183 | * @param __ADDRESS__: NAND memory address. |
bogdanm | 92:4fc01daae5a5 | 184 | * @param __HANDLE__ : NAND handle. |
bogdanm | 92:4fc01daae5a5 | 185 | * @retval NAND Raw address value |
bogdanm | 92:4fc01daae5a5 | 186 | */ |
bogdanm | 92:4fc01daae5a5 | 187 | #define ARRAY_ADDRESS(__ADDRESS__ , __HANDLE__) ((__ADDRESS__)->Page + (((__ADDRESS__)->Block + (((__ADDRESS__)->Zone) * ((__HANDLE__)->Info.ZoneSize)))* ((__HANDLE__)->Info.BlockSize))) |
bogdanm | 92:4fc01daae5a5 | 188 | |
bogdanm | 92:4fc01daae5a5 | 189 | /** |
bogdanm | 92:4fc01daae5a5 | 190 | * @brief NAND memory address cycling. |
bogdanm | 92:4fc01daae5a5 | 191 | * @param __ADDRESS__: NAND memory address. |
bogdanm | 92:4fc01daae5a5 | 192 | * @retval NAND address cycling value. |
bogdanm | 92:4fc01daae5a5 | 193 | */ |
bogdanm | 92:4fc01daae5a5 | 194 | #define ADDR_1st_CYCLE(__ADDRESS__) (uint8_t)((__ADDRESS__)& 0xFF) /* 1st addressing cycle */ |
bogdanm | 92:4fc01daae5a5 | 195 | #define ADDR_2nd_CYCLE(__ADDRESS__) (uint8_t)(((__ADDRESS__)& 0xFF00) >> 8) /* 2nd addressing cycle */ |
bogdanm | 92:4fc01daae5a5 | 196 | #define ADDR_3rd_CYCLE(__ADDRESS__) (uint8_t)(((__ADDRESS__)& 0xFF0000) >> 16) /* 3rd addressing cycle */ |
bogdanm | 92:4fc01daae5a5 | 197 | #define ADDR_4th_CYCLE(__ADDRESS__) (uint8_t)(((__ADDRESS__)& 0xFF000000) >> 24) /* 4th addressing cycle */ |
bogdanm | 92:4fc01daae5a5 | 198 | /** |
bogdanm | 92:4fc01daae5a5 | 199 | * @} |
bogdanm | 92:4fc01daae5a5 | 200 | */ |
bogdanm | 92:4fc01daae5a5 | 201 | |
bogdanm | 92:4fc01daae5a5 | 202 | /* Exported functions --------------------------------------------------------*/ |
bogdanm | 92:4fc01daae5a5 | 203 | /** @addtogroup NAND_Exported_Functions NAND Exported Functions |
bogdanm | 92:4fc01daae5a5 | 204 | * @{ |
bogdanm | 92:4fc01daae5a5 | 205 | */ |
bogdanm | 92:4fc01daae5a5 | 206 | |
bogdanm | 92:4fc01daae5a5 | 207 | /** @addtogroup NAND_Exported_Functions_Group1 Initialization and de-initialization functions |
bogdanm | 92:4fc01daae5a5 | 208 | * @{ |
bogdanm | 92:4fc01daae5a5 | 209 | */ |
bogdanm | 92:4fc01daae5a5 | 210 | |
bogdanm | 92:4fc01daae5a5 | 211 | /* Initialization/de-initialization functions ********************************/ |
bogdanm | 92:4fc01daae5a5 | 212 | HAL_StatusTypeDef HAL_NAND_Init(NAND_HandleTypeDef *hnand, FMC_NAND_PCC_TimingTypeDef *ComSpace_Timing, FMC_NAND_PCC_TimingTypeDef *AttSpace_Timing); |
bogdanm | 92:4fc01daae5a5 | 213 | HAL_StatusTypeDef HAL_NAND_DeInit(NAND_HandleTypeDef *hnand); |
bogdanm | 92:4fc01daae5a5 | 214 | void HAL_NAND_MspInit(NAND_HandleTypeDef *hnand); |
bogdanm | 92:4fc01daae5a5 | 215 | void HAL_NAND_MspDeInit(NAND_HandleTypeDef *hnand); |
bogdanm | 92:4fc01daae5a5 | 216 | void HAL_NAND_IRQHandler(NAND_HandleTypeDef *hnand); |
bogdanm | 92:4fc01daae5a5 | 217 | void HAL_NAND_ITCallback(NAND_HandleTypeDef *hnand); |
bogdanm | 92:4fc01daae5a5 | 218 | |
bogdanm | 92:4fc01daae5a5 | 219 | /** |
bogdanm | 92:4fc01daae5a5 | 220 | * @} |
bogdanm | 92:4fc01daae5a5 | 221 | */ |
bogdanm | 92:4fc01daae5a5 | 222 | |
bogdanm | 92:4fc01daae5a5 | 223 | /** @addtogroup NAND_Exported_Functions_Group2 Input and Output functions |
bogdanm | 92:4fc01daae5a5 | 224 | * @{ |
bogdanm | 92:4fc01daae5a5 | 225 | */ |
bogdanm | 92:4fc01daae5a5 | 226 | |
bogdanm | 92:4fc01daae5a5 | 227 | /* IO operation functions ****************************************************/ |
bogdanm | 92:4fc01daae5a5 | 228 | HAL_StatusTypeDef HAL_NAND_Read_ID(NAND_HandleTypeDef *hnand, NAND_IDTypeDef *pNAND_ID); |
bogdanm | 92:4fc01daae5a5 | 229 | HAL_StatusTypeDef HAL_NAND_Reset(NAND_HandleTypeDef *hnand); |
bogdanm | 92:4fc01daae5a5 | 230 | HAL_StatusTypeDef HAL_NAND_Read_Page(NAND_HandleTypeDef *hnand, NAND_AddressTypedef *pAddress, uint8_t *pBuffer, uint32_t NumPageToRead); |
bogdanm | 92:4fc01daae5a5 | 231 | HAL_StatusTypeDef HAL_NAND_Write_Page(NAND_HandleTypeDef *hnand, NAND_AddressTypedef *pAddress, uint8_t *pBuffer, uint32_t NumPageToWrite); |
bogdanm | 92:4fc01daae5a5 | 232 | HAL_StatusTypeDef HAL_NAND_Read_SpareArea(NAND_HandleTypeDef *hnand, NAND_AddressTypedef *pAddress, uint8_t *pBuffer, uint32_t NumSpareAreaToRead); |
bogdanm | 92:4fc01daae5a5 | 233 | HAL_StatusTypeDef HAL_NAND_Write_SpareArea(NAND_HandleTypeDef *hnand, NAND_AddressTypedef *pAddress, uint8_t *pBuffer, uint32_t NumSpareAreaTowrite); |
bogdanm | 92:4fc01daae5a5 | 234 | HAL_StatusTypeDef HAL_NAND_Erase_Block(NAND_HandleTypeDef *hnand, NAND_AddressTypedef *pAddress); |
bogdanm | 92:4fc01daae5a5 | 235 | uint32_t HAL_NAND_Read_Status(NAND_HandleTypeDef *hnand); |
bogdanm | 92:4fc01daae5a5 | 236 | uint32_t HAL_NAND_Address_Inc(NAND_HandleTypeDef *hnand, NAND_AddressTypedef *pAddress); |
bogdanm | 92:4fc01daae5a5 | 237 | |
bogdanm | 92:4fc01daae5a5 | 238 | /** |
bogdanm | 92:4fc01daae5a5 | 239 | * @} |
bogdanm | 92:4fc01daae5a5 | 240 | */ |
bogdanm | 92:4fc01daae5a5 | 241 | |
bogdanm | 92:4fc01daae5a5 | 242 | /** @addtogroup NAND_Exported_Functions_Group3 Peripheral Control functions |
bogdanm | 92:4fc01daae5a5 | 243 | * @{ |
bogdanm | 92:4fc01daae5a5 | 244 | */ |
bogdanm | 92:4fc01daae5a5 | 245 | |
bogdanm | 92:4fc01daae5a5 | 246 | /* NAND Control functions ****************************************************/ |
bogdanm | 92:4fc01daae5a5 | 247 | HAL_StatusTypeDef HAL_NAND_ECC_Enable(NAND_HandleTypeDef *hnand); |
bogdanm | 92:4fc01daae5a5 | 248 | HAL_StatusTypeDef HAL_NAND_ECC_Disable(NAND_HandleTypeDef *hnand); |
bogdanm | 92:4fc01daae5a5 | 249 | HAL_StatusTypeDef HAL_NAND_GetECC(NAND_HandleTypeDef *hnand, uint32_t *ECCval, uint32_t Timeout); |
bogdanm | 92:4fc01daae5a5 | 250 | |
bogdanm | 92:4fc01daae5a5 | 251 | /** |
bogdanm | 92:4fc01daae5a5 | 252 | * @} |
bogdanm | 92:4fc01daae5a5 | 253 | */ |
bogdanm | 92:4fc01daae5a5 | 254 | |
bogdanm | 92:4fc01daae5a5 | 255 | /** @defgroup NAND_Exported_Functions_Group4 Peripheral State functions |
bogdanm | 92:4fc01daae5a5 | 256 | * @{ |
bogdanm | 92:4fc01daae5a5 | 257 | */ |
bogdanm | 92:4fc01daae5a5 | 258 | |
bogdanm | 92:4fc01daae5a5 | 259 | /* NAND State functions *******************************************************/ |
bogdanm | 92:4fc01daae5a5 | 260 | HAL_NAND_StateTypeDef HAL_NAND_GetState(NAND_HandleTypeDef *hnand); |
bogdanm | 92:4fc01daae5a5 | 261 | uint32_t HAL_NAND_Read_Status(NAND_HandleTypeDef *hnand); |
bogdanm | 92:4fc01daae5a5 | 262 | |
bogdanm | 92:4fc01daae5a5 | 263 | /** |
bogdanm | 92:4fc01daae5a5 | 264 | * @} |
bogdanm | 92:4fc01daae5a5 | 265 | */ |
bogdanm | 92:4fc01daae5a5 | 266 | |
bogdanm | 92:4fc01daae5a5 | 267 | /** |
bogdanm | 92:4fc01daae5a5 | 268 | * @} |
bogdanm | 92:4fc01daae5a5 | 269 | */ |
bogdanm | 92:4fc01daae5a5 | 270 | |
bogdanm | 92:4fc01daae5a5 | 271 | #endif /* STM32F302xE || STM32F303xE || STM32F398xx */ |
bogdanm | 92:4fc01daae5a5 | 272 | /** |
bogdanm | 92:4fc01daae5a5 | 273 | * @} |
bogdanm | 92:4fc01daae5a5 | 274 | */ |
bogdanm | 92:4fc01daae5a5 | 275 | |
bogdanm | 92:4fc01daae5a5 | 276 | /** |
bogdanm | 92:4fc01daae5a5 | 277 | * @} |
bogdanm | 92:4fc01daae5a5 | 278 | */ |
bogdanm | 92:4fc01daae5a5 | 279 | |
bogdanm | 92:4fc01daae5a5 | 280 | #ifdef __cplusplus |
bogdanm | 92:4fc01daae5a5 | 281 | } |
bogdanm | 92:4fc01daae5a5 | 282 | #endif |
bogdanm | 92:4fc01daae5a5 | 283 | |
bogdanm | 92:4fc01daae5a5 | 284 | #endif /* __STM32F3xx_HAL_NAND_H */ |
bogdanm | 92:4fc01daae5a5 | 285 | |
bogdanm | 92:4fc01daae5a5 | 286 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ |