mbed official / mbed

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

Committer:
<>
Date:
Thu Oct 27 16:45:56 2016 +0100
Revision:
128:9bcdf88f62b0
Release 128 of the mbed library

Ports for Upcoming Targets


Fixes and Changes

2966: Add kw24 support https://github.com/ARMmbed/mbed-os/pull/2966
3068: MultiTech mDot - clean up PeripheralPins.c and add new pin names https://github.com/ARMmbed/mbed-os/pull/3068
3089: Kinetis HAL: Remove clock initialization code from serial and ticker https://github.com/ARMmbed/mbed-os/pull/3089
2943: [NRF5] NVIC_SetVector functionality https://github.com/ARMmbed/mbed-os/pull/2943
2938: InterruptIn changes in NCS36510 HAL. https://github.com/ARMmbed/mbed-os/pull/2938
3108: Fix sleep function for NRF52. https://github.com/ARMmbed/mbed-os/pull/3108
3076: STM32F1: Correct timer master value reading https://github.com/ARMmbed/mbed-os/pull/3076
3085: Add LOWPOWERTIMER capability for NUCLEO_F303ZE https://github.com/ARMmbed/mbed-os/pull/3085
3046: [BEETLE] Update BLE stack on Beetle board https://github.com/ARMmbed/mbed-os/pull/3046
3122: [Silicon Labs] Update of Silicon Labs HAL https://github.com/ARMmbed/mbed-os/pull/3122
3022: OnSemi RAM usage fix https://github.com/ARMmbed/mbed-os/pull/3022
3121: STM32F3: Correct UART4 and UART5 defines when using DEVICE_SERIAL_ASYNCH https://github.com/ARMmbed/mbed-os/pull/3121
3142: Targets- NUMAKER_PFM_NUC47216 remove mbed 2 https://github.com/ARMmbed/mbed-os/pull/3142

Who changed what in which revision?

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