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:
Tue Feb 14 11:24:20 2017 +0000
Revision:
136:ef9c61f8c49f
Parent:
135:176b8275d35d
Child:
142:4eea097334d6
Release 136 of the mbed library

Ports for Upcoming Targets


Fixes and Changes

3432: Target STM USBHOST support https://github.com/ARMmbed/mbed-os/pull/3432
3181: NUCLEO_F207ZG extending PeripheralPins.c: all available alternate functions can be used now https://github.com/ARMmbed/mbed-os/pull/3181
3626: NUCLEO_F412ZG : Add USB Device +Host https://github.com/ARMmbed/mbed-os/pull/3626
3628: Fix warnings https://github.com/ARMmbed/mbed-os/pull/3628
3629: STM32: L0 LL layer https://github.com/ARMmbed/mbed-os/pull/3629
3632: IDE Export support for platform VK_RZ_A1H https://github.com/ARMmbed/mbed-os/pull/3632
3642: Missing IRQ pin fix for platform VK_RZ_A1H https://github.com/ARMmbed/mbed-os/pull/3642
3664: Fix ncs36510 sleep definitions https://github.com/ARMmbed/mbed-os/pull/3664
3655: [STM32F4] Modify folder structure https://github.com/ARMmbed/mbed-os/pull/3655
3657: [STM32L4] Modify folder structure https://github.com/ARMmbed/mbed-os/pull/3657
3658: [STM32F3] Modify folder structure https://github.com/ARMmbed/mbed-os/pull/3658
3685: STM32: I2C: reset state machine https://github.com/ARMmbed/mbed-os/pull/3685
3692: uVisor: Standardize available legacy heap and stack https://github.com/ARMmbed/mbed-os/pull/3692
3621: Fix for #2884, LPC824: export to LPCXpresso, target running with wron https://github.com/ARMmbed/mbed-os/pull/3621
3649: [STM32F7] Modify folder structure https://github.com/ARMmbed/mbed-os/pull/3649
3695: Enforce device_name is valid in targets.json https://github.com/ARMmbed/mbed-os/pull/3695
3723: NCS36510: spi_format function bug fix https://github.com/ARMmbed/mbed-os/pull/3723

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bogdanm 86:04dd9b1680ae 1 /**
bogdanm 86:04dd9b1680ae 2 ******************************************************************************
bogdanm 86:04dd9b1680ae 3 * @file stm32f3xx_hal_def.h
bogdanm 86:04dd9b1680ae 4 * @author MCD Application Team
<> 135:176b8275d35d 5 * @version V1.4.0
<> 135:176b8275d35d 6 * @date 16-December-2016
bogdanm 86:04dd9b1680ae 7 * @brief This file contains HAL common defines, enumeration, macros and
bogdanm 86:04dd9b1680ae 8 * structures definitions.
bogdanm 86:04dd9b1680ae 9 ******************************************************************************
bogdanm 86:04dd9b1680ae 10 * @attention
bogdanm 86:04dd9b1680ae 11 *
Kojto 122:f9eeca106725 12 * <h2><center>&copy; COPYRIGHT(c) 2016 STMicroelectronics</center></h2>
bogdanm 86:04dd9b1680ae 13 *
bogdanm 86:04dd9b1680ae 14 * Redistribution and use in source and binary forms, with or without modification,
bogdanm 86:04dd9b1680ae 15 * are permitted provided that the following conditions are met:
bogdanm 86:04dd9b1680ae 16 * 1. Redistributions of source code must retain the above copyright notice,
bogdanm 86:04dd9b1680ae 17 * this list of conditions and the following disclaimer.
bogdanm 86:04dd9b1680ae 18 * 2. Redistributions in binary form must reproduce the above copyright notice,
bogdanm 86:04dd9b1680ae 19 * this list of conditions and the following disclaimer in the documentation
bogdanm 86:04dd9b1680ae 20 * and/or other materials provided with the distribution.
bogdanm 86:04dd9b1680ae 21 * 3. Neither the name of STMicroelectronics nor the names of its contributors
bogdanm 86:04dd9b1680ae 22 * may be used to endorse or promote products derived from this software
bogdanm 86:04dd9b1680ae 23 * without specific prior written permission.
bogdanm 86:04dd9b1680ae 24 *
bogdanm 86:04dd9b1680ae 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
bogdanm 86:04dd9b1680ae 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
bogdanm 86:04dd9b1680ae 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
bogdanm 86:04dd9b1680ae 28 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
bogdanm 86:04dd9b1680ae 29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
bogdanm 86:04dd9b1680ae 30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
bogdanm 86:04dd9b1680ae 31 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
bogdanm 86:04dd9b1680ae 32 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
bogdanm 86:04dd9b1680ae 33 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
bogdanm 86:04dd9b1680ae 34 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
bogdanm 86:04dd9b1680ae 35 *
bogdanm 86:04dd9b1680ae 36 ******************************************************************************
bogdanm 86:04dd9b1680ae 37 */
bogdanm 86:04dd9b1680ae 38
bogdanm 86:04dd9b1680ae 39 /* Define to prevent recursive inclusion -------------------------------------*/
bogdanm 86:04dd9b1680ae 40 #ifndef __STM32F3xx_HAL_DEF
bogdanm 86:04dd9b1680ae 41 #define __STM32F3xx_HAL_DEF
bogdanm 86:04dd9b1680ae 42
bogdanm 86:04dd9b1680ae 43 #ifdef __cplusplus
bogdanm 86:04dd9b1680ae 44 extern "C" {
bogdanm 86:04dd9b1680ae 45 #endif
bogdanm 86:04dd9b1680ae 46
bogdanm 86:04dd9b1680ae 47 /* Includes ------------------------------------------------------------------*/
bogdanm 86:04dd9b1680ae 48 #include "stm32f3xx.h"
Kojto 122:f9eeca106725 49 #include "stm32_hal_legacy.h"
Kojto 122:f9eeca106725 50 #include <stdio.h>
bogdanm 86:04dd9b1680ae 51
bogdanm 86:04dd9b1680ae 52 /* Exported types ------------------------------------------------------------*/
bogdanm 86:04dd9b1680ae 53
bogdanm 86:04dd9b1680ae 54 /**
bogdanm 86:04dd9b1680ae 55 * @brief HAL Status structures definition
bogdanm 86:04dd9b1680ae 56 */
bogdanm 86:04dd9b1680ae 57 typedef enum
bogdanm 86:04dd9b1680ae 58 {
<> 135:176b8275d35d 59 HAL_OK = 0x00U,
<> 135:176b8275d35d 60 HAL_ERROR = 0x01U,
<> 135:176b8275d35d 61 HAL_BUSY = 0x02U,
bogdanm 86:04dd9b1680ae 62 HAL_TIMEOUT = 0x03
bogdanm 86:04dd9b1680ae 63 } HAL_StatusTypeDef;
bogdanm 86:04dd9b1680ae 64
bogdanm 86:04dd9b1680ae 65 /**
bogdanm 86:04dd9b1680ae 66 * @brief HAL Lock structures definition
bogdanm 86:04dd9b1680ae 67 */
bogdanm 86:04dd9b1680ae 68 typedef enum
bogdanm 86:04dd9b1680ae 69 {
<> 135:176b8275d35d 70 HAL_UNLOCKED = 0x00U,
bogdanm 86:04dd9b1680ae 71 HAL_LOCKED = 0x01
bogdanm 86:04dd9b1680ae 72 } HAL_LockTypeDef;
bogdanm 86:04dd9b1680ae 73
bogdanm 86:04dd9b1680ae 74 /* Exported macro ------------------------------------------------------------*/
Kojto 122:f9eeca106725 75 #define HAL_MAX_DELAY 0xFFFFFFFFU
bogdanm 86:04dd9b1680ae 76
bogdanm 86:04dd9b1680ae 77 #define HAL_IS_BIT_SET(REG, BIT) (((REG) & (BIT)) != RESET)
bogdanm 86:04dd9b1680ae 78 #define HAL_IS_BIT_CLR(REG, BIT) (((REG) & (BIT)) == RESET)
bogdanm 86:04dd9b1680ae 79
bogdanm 86:04dd9b1680ae 80 #define __HAL_LINKDMA(__HANDLE__, __PPP_DMA_FIELD_, __DMA_HANDLE_) \
bogdanm 86:04dd9b1680ae 81 do{ \
bogdanm 86:04dd9b1680ae 82 (__HANDLE__)->__PPP_DMA_FIELD_ = &(__DMA_HANDLE_); \
bogdanm 86:04dd9b1680ae 83 (__DMA_HANDLE_).Parent = (__HANDLE__); \
<> 135:176b8275d35d 84 } while(0U)
bogdanm 86:04dd9b1680ae 85
Kojto 122:f9eeca106725 86 #define UNUSED(x) ((void)(x))
Kojto 122:f9eeca106725 87
bogdanm 86:04dd9b1680ae 88 /** @brief Reset the Handle's State field.
bogdanm 86:04dd9b1680ae 89 * @param __HANDLE__: specifies the Peripheral Handle.
bogdanm 86:04dd9b1680ae 90 * @note This macro can be used for the following purpose:
bogdanm 86:04dd9b1680ae 91 * - When the Handle is declared as local variable; before passing it as parameter
bogdanm 86:04dd9b1680ae 92 * to HAL_PPP_Init() for the first time, it is mandatory to use this macro
bogdanm 86:04dd9b1680ae 93 * to set to 0 the Handle's "State" field.
bogdanm 86:04dd9b1680ae 94 * Otherwise, "State" field may have any random value and the first time the function
bogdanm 86:04dd9b1680ae 95 * HAL_PPP_Init() is called, the low level hardware initialization will be missed
bogdanm 86:04dd9b1680ae 96 * (i.e. HAL_PPP_MspInit() will not be executed).
bogdanm 86:04dd9b1680ae 97 * - When there is a need to reconfigure the low level hardware: instead of calling
bogdanm 86:04dd9b1680ae 98 * HAL_PPP_DeInit() then HAL_PPP_Init(), user can make a call to this macro then HAL_PPP_Init().
bogdanm 86:04dd9b1680ae 99 * In this later function, when the Handle's "State" field is set to 0, it will execute the function
bogdanm 86:04dd9b1680ae 100 * HAL_PPP_MspInit() which will reconfigure the low level hardware.
bogdanm 86:04dd9b1680ae 101 * @retval None
bogdanm 86:04dd9b1680ae 102 */
<> 135:176b8275d35d 103 #define __HAL_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = 0U)
bogdanm 86:04dd9b1680ae 104
<> 135:176b8275d35d 105 #if (USE_RTOS == 1U)
bogdanm 86:04dd9b1680ae 106 #error " USE_RTOS should be 0 in the current HAL release "
bogdanm 86:04dd9b1680ae 107 #else
bogdanm 86:04dd9b1680ae 108 #define __HAL_LOCK(__HANDLE__) \
bogdanm 86:04dd9b1680ae 109 do{ \
bogdanm 86:04dd9b1680ae 110 if((__HANDLE__)->Lock == HAL_LOCKED) \
bogdanm 86:04dd9b1680ae 111 { \
bogdanm 86:04dd9b1680ae 112 return HAL_BUSY; \
bogdanm 86:04dd9b1680ae 113 } \
bogdanm 86:04dd9b1680ae 114 else \
bogdanm 86:04dd9b1680ae 115 { \
bogdanm 86:04dd9b1680ae 116 (__HANDLE__)->Lock = HAL_LOCKED; \
bogdanm 86:04dd9b1680ae 117 } \
<> 135:176b8275d35d 118 }while (0U)
bogdanm 86:04dd9b1680ae 119
bogdanm 86:04dd9b1680ae 120 #define __HAL_UNLOCK(__HANDLE__) \
bogdanm 86:04dd9b1680ae 121 do{ \
bogdanm 86:04dd9b1680ae 122 (__HANDLE__)->Lock = HAL_UNLOCKED; \
<> 135:176b8275d35d 123 }while (0U)
bogdanm 86:04dd9b1680ae 124 #endif /* USE_RTOS */
<> 132:9baf128c2fab 125 #if defined (__CC_ARM)
<> 132:9baf128c2fab 126 #pragma diag_suppress 3731
<> 132:9baf128c2fab 127 #endif
<> 132:9baf128c2fab 128 static inline void atomic_set_u32(volatile uint32_t *ptr, uint32_t mask)
<> 132:9baf128c2fab 129 {
<> 132:9baf128c2fab 130 uint32_t newValue;
<> 132:9baf128c2fab 131 do {
<> 132:9baf128c2fab 132 newValue = (uint32_t)__LDREXW((volatile unsigned long *)ptr) | mask;
<> 132:9baf128c2fab 133
<> 132:9baf128c2fab 134 } while (__STREXW(newValue,(volatile unsigned long*) ptr));
<> 132:9baf128c2fab 135 }
<> 132:9baf128c2fab 136
<> 132:9baf128c2fab 137
<> 132:9baf128c2fab 138 static inline void atomic_clr_u32(volatile uint32_t *ptr, uint32_t mask)
<> 132:9baf128c2fab 139 {
<> 132:9baf128c2fab 140 uint32_t newValue;
<> 132:9baf128c2fab 141 do {
<> 132:9baf128c2fab 142 newValue = (uint32_t)__LDREXW((volatile unsigned long *)ptr) &~mask;
<> 132:9baf128c2fab 143
<> 132:9baf128c2fab 144 } while (__STREXW(newValue,(volatile unsigned long*) ptr));
<> 132:9baf128c2fab 145 }
bogdanm 86:04dd9b1680ae 146
bogdanm 86:04dd9b1680ae 147 #if defined ( __GNUC__ )
bogdanm 86:04dd9b1680ae 148 #ifndef __weak
bogdanm 86:04dd9b1680ae 149 #define __weak __attribute__((weak))
bogdanm 86:04dd9b1680ae 150 #endif /* __weak */
bogdanm 86:04dd9b1680ae 151 #ifndef __packed
bogdanm 86:04dd9b1680ae 152 #define __packed __attribute__((__packed__))
bogdanm 86:04dd9b1680ae 153 #endif /* __packed */
bogdanm 86:04dd9b1680ae 154 #endif /* __GNUC__ */
bogdanm 86:04dd9b1680ae 155
bogdanm 86:04dd9b1680ae 156
bogdanm 86:04dd9b1680ae 157 /* Macro to get variable aligned on 4-bytes, for __ICCARM__ the directive "#pragma data_alignment=4" must be used instead */
bogdanm 86:04dd9b1680ae 158 #if defined (__GNUC__) /* GNU Compiler */
bogdanm 86:04dd9b1680ae 159 #ifndef __ALIGN_END
bogdanm 86:04dd9b1680ae 160 #define __ALIGN_END __attribute__ ((aligned (4)))
bogdanm 86:04dd9b1680ae 161 #endif /* __ALIGN_END */
bogdanm 86:04dd9b1680ae 162 #ifndef __ALIGN_BEGIN
bogdanm 86:04dd9b1680ae 163 #define __ALIGN_BEGIN
bogdanm 86:04dd9b1680ae 164 #endif /* __ALIGN_BEGIN */
bogdanm 86:04dd9b1680ae 165 #else
bogdanm 86:04dd9b1680ae 166 #ifndef __ALIGN_END
bogdanm 86:04dd9b1680ae 167 #define __ALIGN_END
bogdanm 86:04dd9b1680ae 168 #endif /* __ALIGN_END */
bogdanm 86:04dd9b1680ae 169 #ifndef __ALIGN_BEGIN
bogdanm 86:04dd9b1680ae 170 #if defined (__CC_ARM) /* ARM Compiler */
bogdanm 86:04dd9b1680ae 171 #define __ALIGN_BEGIN __align(4)
bogdanm 86:04dd9b1680ae 172 #elif defined (__ICCARM__) /* IAR Compiler */
bogdanm 86:04dd9b1680ae 173 #define __ALIGN_BEGIN
bogdanm 86:04dd9b1680ae 174 #endif /* __CC_ARM */
bogdanm 86:04dd9b1680ae 175 #endif /* __ALIGN_BEGIN */
bogdanm 86:04dd9b1680ae 176 #endif /* __GNUC__ */
bogdanm 86:04dd9b1680ae 177
Kojto 122:f9eeca106725 178 /**
Kojto 122:f9eeca106725 179 * @brief __NOINLINE definition
Kojto 122:f9eeca106725 180 */
Kojto 122:f9eeca106725 181 #if defined ( __CC_ARM ) || defined ( __GNUC__ )
Kojto 122:f9eeca106725 182 /* ARM & GNUCompiler
Kojto 122:f9eeca106725 183 ----------------
Kojto 122:f9eeca106725 184 */
Kojto 122:f9eeca106725 185 #define __NOINLINE __attribute__ ( (noinline) )
Kojto 122:f9eeca106725 186
Kojto 122:f9eeca106725 187 #elif defined ( __ICCARM__ )
Kojto 122:f9eeca106725 188 /* ICCARM Compiler
Kojto 122:f9eeca106725 189 ---------------
Kojto 122:f9eeca106725 190 */
Kojto 122:f9eeca106725 191 #define __NOINLINE _Pragma("optimize = no_inline")
Kojto 122:f9eeca106725 192
Kojto 122:f9eeca106725 193 #endif
Kojto 122:f9eeca106725 194
bogdanm 86:04dd9b1680ae 195 #ifdef __cplusplus
bogdanm 86:04dd9b1680ae 196 }
bogdanm 86:04dd9b1680ae 197 #endif
bogdanm 86:04dd9b1680ae 198
bogdanm 86:04dd9b1680ae 199 #endif /* ___STM32F3xx_HAL_DEF */
bogdanm 86:04dd9b1680ae 200
bogdanm 86:04dd9b1680ae 201 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/