The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

mbed 2

This is the mbed 2 library. If you'd like to learn about Mbed OS please see the mbed-os docs.

Committer:
Kojto
Date:
Wed May 13 08:08:21 2015 +0200
Revision:
99:dbbf35b96557
Parent:
89:552587b429a1
Child:
106:ba1f97679dad
Release 99 of the mbed library

Changes:
- new targets - MAXWSNENV, DISCO_L053C8
- STM32F4xx - ST Cube driver
- KSDK mcu - SPI timing fix
- Nordic - update to softdevice s130

Who changed what in which revision?

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