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