Fork of the official mbed C/C SDK provides the software platform and libraries to build your applications for RenBED.

Dependents:   1-RenBuggyTimed RenBED_RGB RenBED_RGB_PWM RenBED_RGB

Fork of mbed by mbed official

Committer:
elijahorr
Date:
Thu Apr 14 07:28:54 2016 +0000
Revision:
121:672067c3ada4
Parent:
112:6f327212ef96
.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 112:6f327212ef96 1 /**
Kojto 112:6f327212ef96 2 ******************************************************************************
Kojto 112:6f327212ef96 3 * @file stm32f4xx_hal_pccard.h
Kojto 112:6f327212ef96 4 * @author MCD Application Team
Kojto 112:6f327212ef96 5 * @version V1.4.1
Kojto 112:6f327212ef96 6 * @date 09-October-2015
Kojto 112:6f327212ef96 7 * @brief Header file of PCCARD HAL module.
Kojto 112:6f327212ef96 8 ******************************************************************************
Kojto 112:6f327212ef96 9 * @attention
Kojto 112:6f327212ef96 10 *
Kojto 112:6f327212ef96 11 * <h2><center>&copy; COPYRIGHT(c) 2015 STMicroelectronics</center></h2>
Kojto 112:6f327212ef96 12 *
Kojto 112:6f327212ef96 13 * Redistribution and use in source and binary forms, with or without modification,
Kojto 112:6f327212ef96 14 * are permitted provided that the following conditions are met:
Kojto 112:6f327212ef96 15 * 1. Redistributions of source code must retain the above copyright notice,
Kojto 112:6f327212ef96 16 * this list of conditions and the following disclaimer.
Kojto 112:6f327212ef96 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
Kojto 112:6f327212ef96 18 * this list of conditions and the following disclaimer in the documentation
Kojto 112:6f327212ef96 19 * and/or other materials provided with the distribution.
Kojto 112:6f327212ef96 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Kojto 112:6f327212ef96 21 * may be used to endorse or promote products derived from this software
Kojto 112:6f327212ef96 22 * without specific prior written permission.
Kojto 112:6f327212ef96 23 *
Kojto 112:6f327212ef96 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Kojto 112:6f327212ef96 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Kojto 112:6f327212ef96 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Kojto 112:6f327212ef96 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Kojto 112:6f327212ef96 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Kojto 112:6f327212ef96 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Kojto 112:6f327212ef96 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Kojto 112:6f327212ef96 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Kojto 112:6f327212ef96 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Kojto 112:6f327212ef96 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Kojto 112:6f327212ef96 34 *
Kojto 112:6f327212ef96 35 ******************************************************************************
Kojto 112:6f327212ef96 36 */
Kojto 112:6f327212ef96 37
Kojto 112:6f327212ef96 38 /* Define to prevent recursive inclusion -------------------------------------*/
Kojto 112:6f327212ef96 39 #ifndef __STM32F4xx_HAL_PCCARD_H
Kojto 112:6f327212ef96 40 #define __STM32F4xx_HAL_PCCARD_H
Kojto 112:6f327212ef96 41
Kojto 112:6f327212ef96 42 #ifdef __cplusplus
Kojto 112:6f327212ef96 43 extern "C" {
Kojto 112:6f327212ef96 44 #endif
Kojto 112:6f327212ef96 45
Kojto 112:6f327212ef96 46 /* Includes ------------------------------------------------------------------*/
Kojto 112:6f327212ef96 47 #if defined(STM32F405xx) || defined(STM32F415xx) || defined(STM32F407xx) || defined(STM32F417xx)
Kojto 112:6f327212ef96 48 #include "stm32f4xx_ll_fsmc.h"
Kojto 112:6f327212ef96 49 #endif /* STM32F405xx || STM32F415xx || STM32F407xx || STM32F417xx */
Kojto 112:6f327212ef96 50
Kojto 112:6f327212ef96 51 #if defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx) || defined(STM32F439xx)
Kojto 112:6f327212ef96 52 #include "stm32f4xx_ll_fmc.h"
Kojto 112:6f327212ef96 53 #endif /* STM32F427xx || STM32F437xx || STM32F429xx || STM32F439xx */
Kojto 112:6f327212ef96 54
Kojto 112:6f327212ef96 55 /** @addtogroup STM32F4xx_HAL_Driver
Kojto 112:6f327212ef96 56 * @{
Kojto 112:6f327212ef96 57 */
Kojto 112:6f327212ef96 58
Kojto 112:6f327212ef96 59 #if defined(STM32F405xx) || defined(STM32F415xx) || defined(STM32F407xx) || defined(STM32F417xx) ||\
Kojto 112:6f327212ef96 60 defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx) || defined(STM32F439xx)
Kojto 112:6f327212ef96 61
Kojto 112:6f327212ef96 62 /** @addtogroup PCCARD
Kojto 112:6f327212ef96 63 * @{
Kojto 112:6f327212ef96 64 */
Kojto 112:6f327212ef96 65
Kojto 112:6f327212ef96 66 /* Exported typedef ----------------------------------------------------------*/
Kojto 112:6f327212ef96 67 /** @defgroup PCCARD_Exported_Types PCCARD Exported Types
Kojto 112:6f327212ef96 68 * @{
Kojto 112:6f327212ef96 69 */
Kojto 112:6f327212ef96 70
Kojto 112:6f327212ef96 71 /**
Kojto 112:6f327212ef96 72 * @brief HAL PCCARD State structures definition
Kojto 112:6f327212ef96 73 */
Kojto 112:6f327212ef96 74 typedef enum
Kojto 112:6f327212ef96 75 {
Kojto 112:6f327212ef96 76 HAL_PCCARD_STATE_RESET = 0x00, /*!< PCCARD peripheral not yet initialized or disabled */
Kojto 112:6f327212ef96 77 HAL_PCCARD_STATE_READY = 0x01, /*!< PCCARD peripheral ready */
Kojto 112:6f327212ef96 78 HAL_PCCARD_STATE_BUSY = 0x02, /*!< PCCARD peripheral busy */
Kojto 112:6f327212ef96 79 HAL_PCCARD_STATE_ERROR = 0x04 /*!< PCCARD peripheral error */
Kojto 112:6f327212ef96 80 }HAL_PCCARD_StateTypeDef;
Kojto 112:6f327212ef96 81
Kojto 112:6f327212ef96 82 typedef enum
Kojto 112:6f327212ef96 83 {
Kojto 112:6f327212ef96 84 HAL_PCCARD_STATUS_SUCCESS = 0,
Kojto 112:6f327212ef96 85 HAL_PCCARD_STATUS_ONGOING,
Kojto 112:6f327212ef96 86 HAL_PCCARD_STATUS_ERROR,
Kojto 112:6f327212ef96 87 HAL_PCCARD_STATUS_TIMEOUT
Kojto 112:6f327212ef96 88 }HAL_PCCARD_StatusTypeDef;
Kojto 112:6f327212ef96 89
Kojto 112:6f327212ef96 90 /**
Kojto 112:6f327212ef96 91 * @brief FMC_PCCARD handle Structure definition
Kojto 112:6f327212ef96 92 */
Kojto 112:6f327212ef96 93 typedef struct
Kojto 112:6f327212ef96 94 {
Kojto 112:6f327212ef96 95 FMC_PCCARD_TypeDef *Instance; /*!< Register base address for PCCARD device */
Kojto 112:6f327212ef96 96
Kojto 112:6f327212ef96 97 FMC_PCCARD_InitTypeDef Init; /*!< PCCARD device control configuration parameters */
Kojto 112:6f327212ef96 98
Kojto 112:6f327212ef96 99 __IO HAL_PCCARD_StateTypeDef State; /*!< PCCARD device access state */
Kojto 112:6f327212ef96 100
Kojto 112:6f327212ef96 101 HAL_LockTypeDef Lock; /*!< PCCARD Lock */
Kojto 112:6f327212ef96 102
Kojto 112:6f327212ef96 103 }PCCARD_HandleTypeDef;
Kojto 112:6f327212ef96 104 /**
Kojto 112:6f327212ef96 105 * @}
Kojto 112:6f327212ef96 106 */
Kojto 112:6f327212ef96 107
Kojto 112:6f327212ef96 108 /* Exported constants --------------------------------------------------------*/
Kojto 112:6f327212ef96 109 /* Exported macro ------------------------------------------------------------*/
Kojto 112:6f327212ef96 110 /** @defgroup PCCARD_Exported_Macros PCCARD Exported Macros
Kojto 112:6f327212ef96 111 * @{
Kojto 112:6f327212ef96 112 */
Kojto 112:6f327212ef96 113 /** @brief Reset PCCARD handle state
Kojto 112:6f327212ef96 114 * @param __HANDLE__: specifies the PCCARD handle.
Kojto 112:6f327212ef96 115 * @retval None
Kojto 112:6f327212ef96 116 */
Kojto 112:6f327212ef96 117 #define __HAL_PCCARD_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_PCCARD_STATE_RESET)
Kojto 112:6f327212ef96 118 /**
Kojto 112:6f327212ef96 119 * @}
Kojto 112:6f327212ef96 120 */
Kojto 112:6f327212ef96 121
Kojto 112:6f327212ef96 122 /* Exported functions --------------------------------------------------------*/
Kojto 112:6f327212ef96 123 /** @addtogroup PCCARD_Exported_Functions
Kojto 112:6f327212ef96 124 * @{
Kojto 112:6f327212ef96 125 */
Kojto 112:6f327212ef96 126
Kojto 112:6f327212ef96 127 /** @addtogroup PCCARD_Exported_Functions_Group1
Kojto 112:6f327212ef96 128 * @{
Kojto 112:6f327212ef96 129 */
Kojto 112:6f327212ef96 130 /* Initialization/de-initialization functions **********************************/
Kojto 112:6f327212ef96 131 HAL_StatusTypeDef HAL_PCCARD_Init(PCCARD_HandleTypeDef *hpccard, FMC_NAND_PCC_TimingTypeDef *ComSpaceTiming, FMC_NAND_PCC_TimingTypeDef *AttSpaceTiming, FMC_NAND_PCC_TimingTypeDef *IOSpaceTiming);
Kojto 112:6f327212ef96 132 HAL_StatusTypeDef HAL_PCCARD_DeInit(PCCARD_HandleTypeDef *hpccard);
Kojto 112:6f327212ef96 133 void HAL_PCCARD_MspInit(PCCARD_HandleTypeDef *hpccard);
Kojto 112:6f327212ef96 134 void HAL_PCCARD_MspDeInit(PCCARD_HandleTypeDef *hpccard);
Kojto 112:6f327212ef96 135 /**
Kojto 112:6f327212ef96 136 * @}
Kojto 112:6f327212ef96 137 */
Kojto 112:6f327212ef96 138
Kojto 112:6f327212ef96 139 /** @addtogroup PCCARD_Exported_Functions_Group2
Kojto 112:6f327212ef96 140 * @{
Kojto 112:6f327212ef96 141 */
Kojto 112:6f327212ef96 142 /* IO operation functions *****************************************************/
Kojto 112:6f327212ef96 143 HAL_StatusTypeDef HAL_PCCARD_Read_ID(PCCARD_HandleTypeDef *hpccard, uint8_t CompactFlash_ID[], uint8_t *pStatus);
Kojto 112:6f327212ef96 144 HAL_StatusTypeDef HAL_PCCARD_Write_Sector(PCCARD_HandleTypeDef *hpccard, uint16_t *pBuffer, uint16_t SectorAddress, uint8_t *pStatus);
Kojto 112:6f327212ef96 145 HAL_StatusTypeDef HAL_PCCARD_Read_Sector(PCCARD_HandleTypeDef *hpccard, uint16_t *pBuffer, uint16_t SectorAddress, uint8_t *pStatus);
Kojto 112:6f327212ef96 146 HAL_StatusTypeDef HAL_PCCARD_Erase_Sector(PCCARD_HandleTypeDef *hpccard, uint16_t SectorAddress, uint8_t *pStatus);
Kojto 112:6f327212ef96 147 HAL_StatusTypeDef HAL_PCCARD_Reset(PCCARD_HandleTypeDef *hpccard);
Kojto 112:6f327212ef96 148 void HAL_PCCARD_IRQHandler(PCCARD_HandleTypeDef *hpccard);
Kojto 112:6f327212ef96 149 void HAL_PCCARD_ITCallback(PCCARD_HandleTypeDef *hpccard);
Kojto 112:6f327212ef96 150
Kojto 112:6f327212ef96 151 /**
Kojto 112:6f327212ef96 152 * @}
Kojto 112:6f327212ef96 153 */
Kojto 112:6f327212ef96 154
Kojto 112:6f327212ef96 155 /** @addtogroup PCCARD_Exported_Functions_Group3
Kojto 112:6f327212ef96 156 * @{
Kojto 112:6f327212ef96 157 */
Kojto 112:6f327212ef96 158 /* PCCARD State functions *******************************************************/
Kojto 112:6f327212ef96 159 HAL_PCCARD_StateTypeDef HAL_PCCARD_GetState(PCCARD_HandleTypeDef *hpccard);
Kojto 112:6f327212ef96 160 HAL_PCCARD_StatusTypeDef HAL_PCCARD_GetStatus(PCCARD_HandleTypeDef *hpccard);
Kojto 112:6f327212ef96 161 HAL_PCCARD_StatusTypeDef HAL_PCCARD_ReadStatus(PCCARD_HandleTypeDef *hpccard);
Kojto 112:6f327212ef96 162 /**
Kojto 112:6f327212ef96 163 * @}
Kojto 112:6f327212ef96 164 */
Kojto 112:6f327212ef96 165
Kojto 112:6f327212ef96 166 /**
Kojto 112:6f327212ef96 167 * @}
Kojto 112:6f327212ef96 168 */
Kojto 112:6f327212ef96 169 /* Private types -------------------------------------------------------------*/
Kojto 112:6f327212ef96 170 /* Private variables ---------------------------------------------------------*/
Kojto 112:6f327212ef96 171 /* Private constants ---------------------------------------------------------*/
Kojto 112:6f327212ef96 172 /** @defgroup PCCARD_Private_Constants PCCARD Private Constants
Kojto 112:6f327212ef96 173 * @{
Kojto 112:6f327212ef96 174 */
Kojto 112:6f327212ef96 175 #define PCCARD_DEVICE_ADDRESS ((uint32_t)0x90000000)
Kojto 112:6f327212ef96 176 #define PCCARD_ATTRIBUTE_SPACE_ADDRESS ((uint32_t)0x98000000) /* Attribute space size to @0x9BFF FFFF */
Kojto 112:6f327212ef96 177 #define PCCARD_COMMON_SPACE_ADDRESS PCCARD_DEVICE_ADDRESS /* Common space size to @0x93FF FFFF */
Kojto 112:6f327212ef96 178 #define PCCARD_IO_SPACE_ADDRESS ((uint32_t)0x9C000000) /* IO space size to @0x9FFF FFFF */
Kojto 112:6f327212ef96 179 #define PCCARD_IO_SPACE_PRIMARY_ADDR ((uint32_t)0x9C0001F0) /* IO space size to @0x9FFF FFFF */
Kojto 112:6f327212ef96 180
Kojto 112:6f327212ef96 181 /* Flash-ATA registers description */
Kojto 112:6f327212ef96 182 #define ATA_DATA ((uint8_t)0x00) /* Data register */
Kojto 112:6f327212ef96 183 #define ATA_SECTOR_COUNT ((uint8_t)0x02) /* Sector Count register */
Kojto 112:6f327212ef96 184 #define ATA_SECTOR_NUMBER ((uint8_t)0x03) /* Sector Number register */
Kojto 112:6f327212ef96 185 #define ATA_CYLINDER_LOW ((uint8_t)0x04) /* Cylinder low register */
Kojto 112:6f327212ef96 186 #define ATA_CYLINDER_HIGH ((uint8_t)0x05) /* Cylinder high register */
Kojto 112:6f327212ef96 187 #define ATA_CARD_HEAD ((uint8_t)0x06) /* Card/Head register */
Kojto 112:6f327212ef96 188 #define ATA_STATUS_CMD ((uint8_t)0x07) /* Status(read)/Command(write) register */
Kojto 112:6f327212ef96 189 #define ATA_STATUS_CMD_ALTERNATE ((uint8_t)0x0E) /* Alternate Status(read)/Command(write) register */
Kojto 112:6f327212ef96 190 #define ATA_COMMON_DATA_AREA ((uint16_t)0x0400) /* Start of data area (for Common access only!) */
Kojto 112:6f327212ef96 191 #define ATA_CARD_CONFIGURATION ((uint16_t)0x0202) /* Card Configuration and Status Register */
Kojto 112:6f327212ef96 192
Kojto 112:6f327212ef96 193 /* Flash-ATA commands */
Kojto 112:6f327212ef96 194 #define ATA_READ_SECTOR_CMD ((uint8_t)0x20)
Kojto 112:6f327212ef96 195 #define ATA_WRITE_SECTOR_CMD ((uint8_t)0x30)
Kojto 112:6f327212ef96 196 #define ATA_ERASE_SECTOR_CMD ((uint8_t)0xC0)
Kojto 112:6f327212ef96 197 #define ATA_IDENTIFY_CMD ((uint8_t)0xEC)
Kojto 112:6f327212ef96 198
Kojto 112:6f327212ef96 199 /* PC Card/Compact Flash status */
Kojto 112:6f327212ef96 200 #define PCCARD_TIMEOUT_ERROR ((uint8_t)0x60)
Kojto 112:6f327212ef96 201 #define PCCARD_BUSY ((uint8_t)0x80)
Kojto 112:6f327212ef96 202 #define PCCARD_PROGR ((uint8_t)0x01)
Kojto 112:6f327212ef96 203 #define PCCARD_READY ((uint8_t)0x40)
Kojto 112:6f327212ef96 204
Kojto 112:6f327212ef96 205 #define PCCARD_SECTOR_SIZE ((uint32_t)255) /* In half words */
Kojto 112:6f327212ef96 206
Kojto 112:6f327212ef96 207 /**
Kojto 112:6f327212ef96 208 * @}
Kojto 112:6f327212ef96 209 */
Kojto 112:6f327212ef96 210 /* Compact Flash redefinition */
Kojto 112:6f327212ef96 211 #define HAL_CF_Init HAL_PCCARD_Init
Kojto 112:6f327212ef96 212 #define HAL_CF_DeInit HAL_PCCARD_DeInit
Kojto 112:6f327212ef96 213 #define HAL_CF_MspInit HAL_PCCARD_MspInit
Kojto 112:6f327212ef96 214 #define HAL_CF_MspDeInit HAL_PCCARD_MspDeInit
Kojto 112:6f327212ef96 215
Kojto 112:6f327212ef96 216 #define HAL_CF_Read_ID HAL_PCCARD_Read_ID
Kojto 112:6f327212ef96 217 #define HAL_CF_Write_Sector HAL_PCCARD_Write_Sector
Kojto 112:6f327212ef96 218 #define HAL_CF_Read_Sector HAL_PCCARD_Read_Sector
Kojto 112:6f327212ef96 219 #define HAL_CF_Erase_Sector HAL_PCCARD_Erase_Sector
Kojto 112:6f327212ef96 220 #define HAL_CF_Reset HAL_PCCARD_Reset
Kojto 112:6f327212ef96 221 #define HAL_CF_IRQHandler HAL_PCCARD_IRQHandler
Kojto 112:6f327212ef96 222 #define HAL_CF_ITCallback HAL_PCCARD_ITCallback
Kojto 112:6f327212ef96 223
Kojto 112:6f327212ef96 224 #define HAL_CF_GetState HAL_PCCARD_GetState
Kojto 112:6f327212ef96 225 #define HAL_CF_GetStatus HAL_PCCARD_GetStatus
Kojto 112:6f327212ef96 226 #define HAL_CF_ReadStatus HAL_PCCARD_ReadStatus
Kojto 112:6f327212ef96 227
Kojto 112:6f327212ef96 228 #define HAL_CF_STATUS_SUCCESS HAL_PCCARD_STATUS_SUCCESS
Kojto 112:6f327212ef96 229 #define HAL_CF_STATUS_ONGOING HAL_PCCARD_STATUS_ONGOING
Kojto 112:6f327212ef96 230 #define HAL_CF_STATUS_ERROR HAL_PCCARD_STATUS_ERROR
Kojto 112:6f327212ef96 231 #define HAL_CF_STATUS_TIMEOUT HAL_PCCARD_STATUS_TIMEOUT
Kojto 112:6f327212ef96 232 #define HAL_CF_StatusTypeDef HAL_PCCARD_StatusTypeDef
Kojto 112:6f327212ef96 233
Kojto 112:6f327212ef96 234
Kojto 112:6f327212ef96 235 #define CF_DEVICE_ADDRESS PCCARD_DEVICE_ADDRESS
Kojto 112:6f327212ef96 236 #define CF_ATTRIBUTE_SPACE_ADDRESS PCCARD_ATTRIBUTE_SPACE_ADDRESS
Kojto 112:6f327212ef96 237 #define CF_COMMON_SPACE_ADDRESS PCCARD_COMMON_SPACE_ADDRESS
Kojto 112:6f327212ef96 238 #define CF_IO_SPACE_ADDRESS PCCARD_IO_SPACE_ADDRESS
Kojto 112:6f327212ef96 239 #define CF_IO_SPACE_PRIMARY_ADDR PCCARD_IO_SPACE_PRIMARY_ADDR
Kojto 112:6f327212ef96 240
Kojto 112:6f327212ef96 241 #define CF_TIMEOUT_ERROR PCCARD_TIMEOUT_ERROR
Kojto 112:6f327212ef96 242 #define CF_BUSY PCCARD_BUSY
Kojto 112:6f327212ef96 243 #define CF_PROGR PCCARD_PROGR
Kojto 112:6f327212ef96 244 #define CF_READY PCCARD_READY
Kojto 112:6f327212ef96 245
Kojto 112:6f327212ef96 246 #define CF_SECTOR_SIZE PCCARD_SECTOR_SIZE
Kojto 112:6f327212ef96 247
Kojto 112:6f327212ef96 248 /* Private macros ------------------------------------------------------------*/
Kojto 112:6f327212ef96 249 /**
Kojto 112:6f327212ef96 250 * @}
Kojto 112:6f327212ef96 251 */
Kojto 112:6f327212ef96 252
Kojto 112:6f327212ef96 253 #endif /* STM32F405xx || STM32F415xx || STM32F407xx || STM32F417xx ||\
Kojto 112:6f327212ef96 254 STM32F427xx || STM32F437xx || STM32F429xx || STM32F439xx */
Kojto 112:6f327212ef96 255
Kojto 112:6f327212ef96 256
Kojto 112:6f327212ef96 257 /**
Kojto 112:6f327212ef96 258 * @}
Kojto 112:6f327212ef96 259 */
Kojto 112:6f327212ef96 260
Kojto 112:6f327212ef96 261 #ifdef __cplusplus
Kojto 112:6f327212ef96 262 }
Kojto 112:6f327212ef96 263 #endif
Kojto 112:6f327212ef96 264
Kojto 112:6f327212ef96 265 #endif /* __STM32F4xx_HAL_PCCARD_H */
Kojto 112:6f327212ef96 266
Kojto 112:6f327212ef96 267 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/