SilentSensors / mbed-dev

Fork of mbed-dev by mbed official

Committer:
AnnaBridge
Date:
Wed Jun 21 17:46:44 2017 +0100
Revision:
167:e84263d55307
Parent:
162:e13f6fdb2ac4
Child:
182:a56a73fd2a6f
This updates the lib to the mbed lib v 145

Who changed what in which revision?

UserRevisionLine numberNew contents of line
<> 162:e13f6fdb2ac4 1 /**
<> 162:e13f6fdb2ac4 2 ******************************************************************************
<> 162:e13f6fdb2ac4 3 * @file stm32f4xx.h
<> 162:e13f6fdb2ac4 4 * @author MCD Application Team
AnnaBridge 167:e84263d55307 5 * @version V2.6.1
AnnaBridge 167:e84263d55307 6 * @date 14-February-2017
<> 162:e13f6fdb2ac4 7 * @brief CMSIS STM32F4xx Device Peripheral Access Layer Header File.
<> 162:e13f6fdb2ac4 8 *
<> 162:e13f6fdb2ac4 9 * The file is the unique include file that the application programmer
<> 162:e13f6fdb2ac4 10 * is using in the C source code, usually in main.c. This file contains:
<> 162:e13f6fdb2ac4 11 * - Configuration section that allows to select:
<> 162:e13f6fdb2ac4 12 * - The STM32F4xx device used in the target application
<> 162:e13f6fdb2ac4 13 * - To use or not the peripheral’s drivers in application code(i.e.
<> 162:e13f6fdb2ac4 14 * code will be based on direct access to peripheral’s registers
<> 162:e13f6fdb2ac4 15 * rather than drivers API), this option is controlled by
<> 162:e13f6fdb2ac4 16 * "#define USE_HAL_DRIVER"
<> 162:e13f6fdb2ac4 17 *
<> 162:e13f6fdb2ac4 18 ******************************************************************************
<> 162:e13f6fdb2ac4 19 * @attention
<> 162:e13f6fdb2ac4 20 *
AnnaBridge 167:e84263d55307 21 * <h2><center>&copy; COPYRIGHT(c) 2017 STMicroelectronics</center></h2>
<> 162:e13f6fdb2ac4 22 *
<> 162:e13f6fdb2ac4 23 * Redistribution and use in source and binary forms, with or without modification,
<> 162:e13f6fdb2ac4 24 * are permitted provided that the following conditions are met:
<> 162:e13f6fdb2ac4 25 * 1. Redistributions of source code must retain the above copyright notice,
<> 162:e13f6fdb2ac4 26 * this list of conditions and the following disclaimer.
<> 162:e13f6fdb2ac4 27 * 2. Redistributions in binary form must reproduce the above copyright notice,
<> 162:e13f6fdb2ac4 28 * this list of conditions and the following disclaimer in the documentation
<> 162:e13f6fdb2ac4 29 * and/or other materials provided with the distribution.
<> 162:e13f6fdb2ac4 30 * 3. Neither the name of STMicroelectronics nor the names of its contributors
<> 162:e13f6fdb2ac4 31 * may be used to endorse or promote products derived from this software
<> 162:e13f6fdb2ac4 32 * without specific prior written permission.
<> 162:e13f6fdb2ac4 33 *
<> 162:e13f6fdb2ac4 34 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
<> 162:e13f6fdb2ac4 35 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
<> 162:e13f6fdb2ac4 36 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
<> 162:e13f6fdb2ac4 37 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
<> 162:e13f6fdb2ac4 38 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
<> 162:e13f6fdb2ac4 39 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
<> 162:e13f6fdb2ac4 40 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
<> 162:e13f6fdb2ac4 41 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
<> 162:e13f6fdb2ac4 42 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
<> 162:e13f6fdb2ac4 43 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
<> 162:e13f6fdb2ac4 44 *
<> 162:e13f6fdb2ac4 45 ******************************************************************************
<> 162:e13f6fdb2ac4 46 */
<> 162:e13f6fdb2ac4 47
<> 162:e13f6fdb2ac4 48 /** @addtogroup CMSIS
<> 162:e13f6fdb2ac4 49 * @{
<> 162:e13f6fdb2ac4 50 */
<> 162:e13f6fdb2ac4 51
<> 162:e13f6fdb2ac4 52 /** @addtogroup stm32f4xx
<> 162:e13f6fdb2ac4 53 * @{
<> 162:e13f6fdb2ac4 54 */
<> 162:e13f6fdb2ac4 55
<> 162:e13f6fdb2ac4 56 #ifndef __STM32F4xx_H
<> 162:e13f6fdb2ac4 57 #define __STM32F4xx_H
<> 162:e13f6fdb2ac4 58
<> 162:e13f6fdb2ac4 59 #ifdef __cplusplus
<> 162:e13f6fdb2ac4 60 extern "C" {
<> 162:e13f6fdb2ac4 61 #endif /* __cplusplus */
<> 162:e13f6fdb2ac4 62
<> 162:e13f6fdb2ac4 63 /** @addtogroup Library_configuration_section
<> 162:e13f6fdb2ac4 64 * @{
<> 162:e13f6fdb2ac4 65 */
<> 162:e13f6fdb2ac4 66
<> 162:e13f6fdb2ac4 67 /**
<> 162:e13f6fdb2ac4 68 * @brief STM32 Family
<> 162:e13f6fdb2ac4 69 */
<> 162:e13f6fdb2ac4 70 #if !defined (STM32F4)
<> 162:e13f6fdb2ac4 71 #define STM32F4
<> 162:e13f6fdb2ac4 72 #endif /* STM32F4 */
<> 162:e13f6fdb2ac4 73
<> 162:e13f6fdb2ac4 74 /* Uncomment the line below according to the target STM32 device used in your
<> 162:e13f6fdb2ac4 75 application
<> 162:e13f6fdb2ac4 76 */
<> 162:e13f6fdb2ac4 77 #if !defined (STM32F405xx) && !defined (STM32F415xx) && !defined (STM32F407xx) && !defined (STM32F417xx) && \
<> 162:e13f6fdb2ac4 78 !defined (STM32F427xx) && !defined (STM32F437xx) && !defined (STM32F429xx) && !defined (STM32F439xx) && \
<> 162:e13f6fdb2ac4 79 !defined (STM32F401xC) && !defined (STM32F401xE) && !defined (STM32F410Tx) && !defined (STM32F410Cx) && \
<> 162:e13f6fdb2ac4 80 !defined (STM32F410Rx) && !defined (STM32F411xE) && !defined (STM32F446xx) && !defined (STM32F469xx) && \
<> 162:e13f6fdb2ac4 81 !defined (STM32F479xx) && !defined (STM32F412Cx) && !defined (STM32F412Rx) && !defined (STM32F412Vx) && \
<> 162:e13f6fdb2ac4 82 !defined (STM32F412Zx) && !defined (STM32F413xx) && !defined (STM32F423xx)
<> 162:e13f6fdb2ac4 83 /* #define STM32F405xx */ /*!< STM32F405RG, STM32F405VG and STM32F405ZG Devices */
<> 162:e13f6fdb2ac4 84 /* #define STM32F415xx */ /*!< STM32F415RG, STM32F415VG and STM32F415ZG Devices */
<> 162:e13f6fdb2ac4 85 /* #define STM32F407xx */ /*!< STM32F407VG, STM32F407VE, STM32F407ZG, STM32F407ZE, STM32F407IG and STM32F407IE Devices */
<> 162:e13f6fdb2ac4 86 /* #define STM32F417xx */ /*!< STM32F417VG, STM32F417VE, STM32F417ZG, STM32F417ZE, STM32F417IG and STM32F417IE Devices */
<> 162:e13f6fdb2ac4 87 /* #define STM32F427xx */ /*!< STM32F427VG, STM32F427VI, STM32F427ZG, STM32F427ZI, STM32F427IG and STM32F427II Devices */
<> 162:e13f6fdb2ac4 88 #define STM32F437xx /*!< STM32F437VG, STM32F437VI, STM32F437ZG, STM32F437ZI, STM32F437IG and STM32F437II Devices */
<> 162:e13f6fdb2ac4 89 /* #define STM32F429xx */ /*!< STM32F429VG, STM32F429VI, STM32F429ZG, STM32F429ZI, STM32F429BG, STM32F429BI, STM32F429NG,
<> 162:e13f6fdb2ac4 90 STM32F439NI, STM32F429IG and STM32F429II Devices */
<> 162:e13f6fdb2ac4 91 /* #define STM32F439xx */ /*!< STM32F439VG, STM32F439VI, STM32F439ZG, STM32F439ZI, STM32F439BG, STM32F439BI, STM32F439NG,
<> 162:e13f6fdb2ac4 92 STM32F439NI, STM32F439IG and STM32F439II Devices */
<> 162:e13f6fdb2ac4 93 /* #define STM32F401xC */ /*!< STM32F401CB, STM32F401CC, STM32F401RB, STM32F401RC, STM32F401VB and STM32F401VC Devices */
<> 162:e13f6fdb2ac4 94 /* #define STM32F401xE */ /*!< STM32F401CD, STM32F401RD, STM32F401VD, STM32F401CE, STM32F401RE and STM32F401VE Devices */
<> 162:e13f6fdb2ac4 95 /* #define STM32F410Tx */ /*!< STM32F410T8 and STM32F410TB Devices */
<> 162:e13f6fdb2ac4 96 /* #define STM32F410Cx */ /*!< STM32F410C8 and STM32F410CB Devices */
<> 162:e13f6fdb2ac4 97 /* #define STM32F410Rx */ /*!< STM32F410R8 and STM32F410RB Devices */
<> 162:e13f6fdb2ac4 98 /* #define STM32F411xE */ /*!< STM32F411CC, STM32F411RC, STM32F411VC, STM32F411CE, STM32F411RE and STM32F411VE Devices */
<> 162:e13f6fdb2ac4 99 /* #define STM32F446xx */ /*!< STM32F446MC, STM32F446ME, STM32F446RC, STM32F446RE, STM32F446VC, STM32F446VE, STM32F446ZC,
<> 162:e13f6fdb2ac4 100 and STM32F446ZE Devices */
<> 162:e13f6fdb2ac4 101 /* #define STM32F469xx */ /*!< STM32F469AI, STM32F469II, STM32F469BI, STM32F469NI, STM32F469AG, STM32F469IG, STM32F469BG,
<> 162:e13f6fdb2ac4 102 STM32F469NG, STM32F469AE, STM32F469IE, STM32F469BE and STM32F469NE Devices */
<> 162:e13f6fdb2ac4 103 /* #define STM32F479xx */ /*!< STM32F479AI, STM32F479II, STM32F479BI, STM32F479NI, STM32F479AG, STM32F479IG, STM32F479BG
<> 162:e13f6fdb2ac4 104 and STM32F479NG Devices */
<> 162:e13f6fdb2ac4 105 /* #define STM32F412Cx */ /*!< STM32F412CEU and STM32F412CGU Devices */
<> 162:e13f6fdb2ac4 106 /* #define STM32F412Zx */ /*!< STM32F412ZET, STM32F412ZGT, STM32F412ZEJ and STM32F412ZGJ Devices */
<> 162:e13f6fdb2ac4 107 /* #define STM32F412Vx */ /*!< STM32F412VET, STM32F412VGT, STM32F412VEH and STM32F412VGH Devices */
<> 162:e13f6fdb2ac4 108 /* #define STM32F412Rx */ /*!< STM32F412RET, STM32F412RGT, STM32F412REY and STM32F412RGY Devices */
<> 162:e13f6fdb2ac4 109 /* #define STM32F413xx */ /*!< STM32F413CH, STM32F413MH, STM32F413RH, STM32F413VH, STM32F413ZH, STM32F413CG, STM32F413MG,
<> 162:e13f6fdb2ac4 110 STM32F413RG, STM32F413VG and STM32F413ZG Devices */
<> 162:e13f6fdb2ac4 111 /* #define STM32F423xx */ /*!< STM32F423CH, STM32F423RH, STM32F423VH and STM32F423ZH Devices */
<> 162:e13f6fdb2ac4 112 #endif
<> 162:e13f6fdb2ac4 113
<> 162:e13f6fdb2ac4 114 /* Tip: To avoid modifying this file each time you need to switch between these
<> 162:e13f6fdb2ac4 115 devices, you can define the device in your toolchain compiler preprocessor.
<> 162:e13f6fdb2ac4 116 */
<> 162:e13f6fdb2ac4 117 #if !defined (USE_HAL_DRIVER)
<> 162:e13f6fdb2ac4 118 /**
<> 162:e13f6fdb2ac4 119 * @brief Comment the line below if you will not use the peripherals drivers.
<> 162:e13f6fdb2ac4 120 In this case, these drivers will not be included and the application code will
<> 162:e13f6fdb2ac4 121 be based on direct access to peripherals registers
<> 162:e13f6fdb2ac4 122 */
<> 162:e13f6fdb2ac4 123 #define USE_HAL_DRIVER
<> 162:e13f6fdb2ac4 124 #endif /* USE_HAL_DRIVER */
<> 162:e13f6fdb2ac4 125
<> 162:e13f6fdb2ac4 126 /**
AnnaBridge 167:e84263d55307 127 * @brief CMSIS version number V2.6.1
<> 162:e13f6fdb2ac4 128 */
<> 162:e13f6fdb2ac4 129 #define __STM32F4xx_CMSIS_VERSION_MAIN (0x02U) /*!< [31:24] main version */
AnnaBridge 167:e84263d55307 130 #define __STM32F4xx_CMSIS_VERSION_SUB1 (0x06U) /*!< [23:16] sub1 version */
AnnaBridge 167:e84263d55307 131 #define __STM32F4xx_CMSIS_VERSION_SUB2 (0x01U) /*!< [15:8] sub2 version */
<> 162:e13f6fdb2ac4 132 #define __STM32F4xx_CMSIS_VERSION_RC (0x00U) /*!< [7:0] release candidate */
<> 162:e13f6fdb2ac4 133 #define __STM32F4xx_CMSIS_VERSION ((__STM32F4xx_CMSIS_VERSION_MAIN << 24)\
<> 162:e13f6fdb2ac4 134 |(__STM32F4xx_CMSIS_VERSION_SUB1 << 16)\
<> 162:e13f6fdb2ac4 135 |(__STM32F4xx_CMSIS_VERSION_SUB2 << 8 )\
<> 162:e13f6fdb2ac4 136 |(__STM32F4xx_CMSIS_VERSION))
<> 162:e13f6fdb2ac4 137
<> 162:e13f6fdb2ac4 138 /**
<> 162:e13f6fdb2ac4 139 * @}
<> 162:e13f6fdb2ac4 140 */
<> 162:e13f6fdb2ac4 141
<> 162:e13f6fdb2ac4 142 /** @addtogroup Device_Included
<> 162:e13f6fdb2ac4 143 * @{
<> 162:e13f6fdb2ac4 144 */
<> 162:e13f6fdb2ac4 145
<> 162:e13f6fdb2ac4 146 #if defined(STM32F405xx)
<> 162:e13f6fdb2ac4 147 #include "stm32f405xx.h"
<> 162:e13f6fdb2ac4 148 #elif defined(STM32F415xx)
<> 162:e13f6fdb2ac4 149 #include "stm32f415xx.h"
<> 162:e13f6fdb2ac4 150 #elif defined(STM32F407xx)
<> 162:e13f6fdb2ac4 151 #include "stm32f407xx.h"
<> 162:e13f6fdb2ac4 152 #elif defined(STM32F417xx)
<> 162:e13f6fdb2ac4 153 #include "stm32f417xx.h"
<> 162:e13f6fdb2ac4 154 #elif defined(STM32F427xx)
<> 162:e13f6fdb2ac4 155 #include "stm32f427xx.h"
<> 162:e13f6fdb2ac4 156 #elif defined(STM32F437xx)
<> 162:e13f6fdb2ac4 157 #include "stm32f437xx.h"
<> 162:e13f6fdb2ac4 158 #elif defined(STM32F429xx)
<> 162:e13f6fdb2ac4 159 #include "stm32f429xx.h"
<> 162:e13f6fdb2ac4 160 #elif defined(STM32F439xx)
<> 162:e13f6fdb2ac4 161 #include "stm32f439xx.h"
<> 162:e13f6fdb2ac4 162 #elif defined(STM32F401xC)
<> 162:e13f6fdb2ac4 163 #include "stm32f401xc.h"
<> 162:e13f6fdb2ac4 164 #elif defined(STM32F401xE)
<> 162:e13f6fdb2ac4 165 #include "stm32f401xe.h"
<> 162:e13f6fdb2ac4 166 #elif defined(STM32F410Tx)
<> 162:e13f6fdb2ac4 167 #include "stm32f410tx.h"
<> 162:e13f6fdb2ac4 168 #elif defined(STM32F410Cx)
<> 162:e13f6fdb2ac4 169 #include "stm32f410cx.h"
<> 162:e13f6fdb2ac4 170 #elif defined(STM32F410Rx)
<> 162:e13f6fdb2ac4 171 #include "stm32f410rx.h"
<> 162:e13f6fdb2ac4 172 #elif defined(STM32F411xE)
<> 162:e13f6fdb2ac4 173 #include "stm32f411xe.h"
<> 162:e13f6fdb2ac4 174 #elif defined(STM32F446xx)
<> 162:e13f6fdb2ac4 175 #include "stm32f446xx.h"
<> 162:e13f6fdb2ac4 176 #elif defined(STM32F469xx)
<> 162:e13f6fdb2ac4 177 #include "stm32f469xx.h"
<> 162:e13f6fdb2ac4 178 #elif defined(STM32F479xx)
<> 162:e13f6fdb2ac4 179 #include "stm32f479xx.h"
<> 162:e13f6fdb2ac4 180 #elif defined(STM32F412Cx)
<> 162:e13f6fdb2ac4 181 #include "stm32f412cx.h"
<> 162:e13f6fdb2ac4 182 #elif defined(STM32F412Zx)
<> 162:e13f6fdb2ac4 183 #include "stm32f412zx.h"
<> 162:e13f6fdb2ac4 184 #elif defined(STM32F412Rx)
<> 162:e13f6fdb2ac4 185 #include "stm32f412rx.h"
<> 162:e13f6fdb2ac4 186 #elif defined(STM32F412Vx)
<> 162:e13f6fdb2ac4 187 #include "stm32f412vx.h"
<> 162:e13f6fdb2ac4 188 #elif defined(STM32F413xx)
<> 162:e13f6fdb2ac4 189 #include "stm32f413xx.h"
<> 162:e13f6fdb2ac4 190 #elif defined(STM32F423xx)
<> 162:e13f6fdb2ac4 191 #include "stm32f423xx.h"
<> 162:e13f6fdb2ac4 192 #else
<> 162:e13f6fdb2ac4 193 #error "Please select first the target STM32F4xx device used in your application (in stm32f4xx.h file)"
<> 162:e13f6fdb2ac4 194 #endif
<> 162:e13f6fdb2ac4 195
<> 162:e13f6fdb2ac4 196 /**
<> 162:e13f6fdb2ac4 197 * @}
<> 162:e13f6fdb2ac4 198 */
<> 162:e13f6fdb2ac4 199
<> 162:e13f6fdb2ac4 200 /** @addtogroup Exported_types
<> 162:e13f6fdb2ac4 201 * @{
<> 162:e13f6fdb2ac4 202 */
<> 162:e13f6fdb2ac4 203 typedef enum
<> 162:e13f6fdb2ac4 204 {
<> 162:e13f6fdb2ac4 205 RESET = 0U,
<> 162:e13f6fdb2ac4 206 SET = !RESET
<> 162:e13f6fdb2ac4 207 } FlagStatus, ITStatus;
<> 162:e13f6fdb2ac4 208
<> 162:e13f6fdb2ac4 209 typedef enum
<> 162:e13f6fdb2ac4 210 {
<> 162:e13f6fdb2ac4 211 DISABLE = 0U,
<> 162:e13f6fdb2ac4 212 ENABLE = !DISABLE
<> 162:e13f6fdb2ac4 213 } FunctionalState;
<> 162:e13f6fdb2ac4 214 #define IS_FUNCTIONAL_STATE(STATE) (((STATE) == DISABLE) || ((STATE) == ENABLE))
<> 162:e13f6fdb2ac4 215
<> 162:e13f6fdb2ac4 216 typedef enum
<> 162:e13f6fdb2ac4 217 {
<> 162:e13f6fdb2ac4 218 ERROR = 0U,
<> 162:e13f6fdb2ac4 219 SUCCESS = !ERROR
<> 162:e13f6fdb2ac4 220 } ErrorStatus;
<> 162:e13f6fdb2ac4 221
<> 162:e13f6fdb2ac4 222 /**
<> 162:e13f6fdb2ac4 223 * @}
<> 162:e13f6fdb2ac4 224 */
<> 162:e13f6fdb2ac4 225
<> 162:e13f6fdb2ac4 226
<> 162:e13f6fdb2ac4 227 /** @addtogroup Exported_macro
<> 162:e13f6fdb2ac4 228 * @{
<> 162:e13f6fdb2ac4 229 */
<> 162:e13f6fdb2ac4 230 #define SET_BIT(REG, BIT) ((REG) |= (BIT))
<> 162:e13f6fdb2ac4 231
<> 162:e13f6fdb2ac4 232 #define CLEAR_BIT(REG, BIT) ((REG) &= ~(BIT))
<> 162:e13f6fdb2ac4 233
<> 162:e13f6fdb2ac4 234 #define READ_BIT(REG, BIT) ((REG) & (BIT))
<> 162:e13f6fdb2ac4 235
<> 162:e13f6fdb2ac4 236 #define CLEAR_REG(REG) ((REG) = (0x0))
<> 162:e13f6fdb2ac4 237
<> 162:e13f6fdb2ac4 238 #define WRITE_REG(REG, VAL) ((REG) = (VAL))
<> 162:e13f6fdb2ac4 239
<> 162:e13f6fdb2ac4 240 #define READ_REG(REG) ((REG))
<> 162:e13f6fdb2ac4 241
<> 162:e13f6fdb2ac4 242 #define MODIFY_REG(REG, CLEARMASK, SETMASK) WRITE_REG((REG), (((READ_REG(REG)) & (~(CLEARMASK))) | (SETMASK)))
<> 162:e13f6fdb2ac4 243
<> 162:e13f6fdb2ac4 244 #define POSITION_VAL(VAL) (__CLZ(__RBIT(VAL)))
<> 162:e13f6fdb2ac4 245
<> 162:e13f6fdb2ac4 246
<> 162:e13f6fdb2ac4 247 /**
<> 162:e13f6fdb2ac4 248 * @}
<> 162:e13f6fdb2ac4 249 */
<> 162:e13f6fdb2ac4 250
<> 162:e13f6fdb2ac4 251 #if defined (USE_HAL_DRIVER)
<> 162:e13f6fdb2ac4 252 #include "stm32f4xx_hal.h"
<> 162:e13f6fdb2ac4 253 #endif /* USE_HAL_DRIVER */
<> 162:e13f6fdb2ac4 254
<> 162:e13f6fdb2ac4 255 #ifdef __cplusplus
<> 162:e13f6fdb2ac4 256 }
<> 162:e13f6fdb2ac4 257 #endif /* __cplusplus */
<> 162:e13f6fdb2ac4 258
<> 162:e13f6fdb2ac4 259 #endif /* __STM32F4xx_H */
<> 162:e13f6fdb2ac4 260 /**
<> 162:e13f6fdb2ac4 261 * @}
<> 162:e13f6fdb2ac4 262 */
<> 162:e13f6fdb2ac4 263
<> 162:e13f6fdb2ac4 264 /**
<> 162:e13f6fdb2ac4 265 * @}
<> 162:e13f6fdb2ac4 266 */
<> 162:e13f6fdb2ac4 267
<> 162:e13f6fdb2ac4 268
<> 162:e13f6fdb2ac4 269
<> 162:e13f6fdb2ac4 270
<> 162:e13f6fdb2ac4 271 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/