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:
elijahorr
Date:
Thu Apr 14 07:28:54 2016 +0000
Revision:
121:672067c3ada4
Parent:
109:9296ab0bfc11
.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 109:9296ab0bfc11 1 /**
Kojto 109:9296ab0bfc11 2 ******************************************************************************
Kojto 109:9296ab0bfc11 3 * @file stm32f3xx_hal_pwr.h
Kojto 109:9296ab0bfc11 4 * @author MCD Application Team
Kojto 109:9296ab0bfc11 5 * @version V1.1.0
Kojto 109:9296ab0bfc11 6 * @date 12-Sept-2014
Kojto 109:9296ab0bfc11 7 * @brief Header file of PWR HAL module.
Kojto 109:9296ab0bfc11 8 ******************************************************************************
Kojto 109:9296ab0bfc11 9 * @attention
Kojto 109:9296ab0bfc11 10 *
Kojto 109:9296ab0bfc11 11 * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
Kojto 109:9296ab0bfc11 12 *
Kojto 109:9296ab0bfc11 13 * Redistribution and use in source and binary forms, with or without modification,
Kojto 109:9296ab0bfc11 14 * are permitted provided that the following conditions are met:
Kojto 109:9296ab0bfc11 15 * 1. Redistributions of source code must retain the above copyright notice,
Kojto 109:9296ab0bfc11 16 * this list of conditions and the following disclaimer.
Kojto 109:9296ab0bfc11 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
Kojto 109:9296ab0bfc11 18 * this list of conditions and the following disclaimer in the documentation
Kojto 109:9296ab0bfc11 19 * and/or other materials provided with the distribution.
Kojto 109:9296ab0bfc11 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Kojto 109:9296ab0bfc11 21 * may be used to endorse or promote products derived from this software
Kojto 109:9296ab0bfc11 22 * without specific prior written permission.
Kojto 109:9296ab0bfc11 23 *
Kojto 109:9296ab0bfc11 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Kojto 109:9296ab0bfc11 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Kojto 109:9296ab0bfc11 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Kojto 109:9296ab0bfc11 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Kojto 109:9296ab0bfc11 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Kojto 109:9296ab0bfc11 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Kojto 109:9296ab0bfc11 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Kojto 109:9296ab0bfc11 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Kojto 109:9296ab0bfc11 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Kojto 109:9296ab0bfc11 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Kojto 109:9296ab0bfc11 34 *
Kojto 109:9296ab0bfc11 35 ******************************************************************************
Kojto 109:9296ab0bfc11 36 */
Kojto 109:9296ab0bfc11 37
Kojto 109:9296ab0bfc11 38 /* Define to prevent recursive inclusion -------------------------------------*/
Kojto 109:9296ab0bfc11 39 #ifndef __STM32F3xx_HAL_PWR_H
Kojto 109:9296ab0bfc11 40 #define __STM32F3xx_HAL_PWR_H
Kojto 109:9296ab0bfc11 41
Kojto 109:9296ab0bfc11 42 #ifdef __cplusplus
Kojto 109:9296ab0bfc11 43 extern "C" {
Kojto 109:9296ab0bfc11 44 #endif
Kojto 109:9296ab0bfc11 45
Kojto 109:9296ab0bfc11 46 /* Includes ------------------------------------------------------------------*/
Kojto 109:9296ab0bfc11 47 #include "stm32f3xx_hal_def.h"
Kojto 109:9296ab0bfc11 48
Kojto 109:9296ab0bfc11 49 /** @addtogroup STM32F3xx_HAL_Driver
Kojto 109:9296ab0bfc11 50 * @{
Kojto 109:9296ab0bfc11 51 */
Kojto 109:9296ab0bfc11 52
Kojto 109:9296ab0bfc11 53 /** @addtogroup PWR PWR HAL Driver module
Kojto 109:9296ab0bfc11 54 * @{
Kojto 109:9296ab0bfc11 55 */
Kojto 109:9296ab0bfc11 56
Kojto 109:9296ab0bfc11 57 /* Exported types ------------------------------------------------------------*/
Kojto 109:9296ab0bfc11 58 /* Exported constants --------------------------------------------------------*/
Kojto 109:9296ab0bfc11 59 /** @defgroup PWR_Alias_Exported_Constants PWR Alias Exported Constants
Kojto 109:9296ab0bfc11 60 * @{
Kojto 109:9296ab0bfc11 61 */
Kojto 109:9296ab0bfc11 62 /* ------------- PWR registers bit address in the alias region ---------------*/
Kojto 109:9296ab0bfc11 63 #define PWR_OFFSET (PWR_BASE - PERIPH_BASE)
Kojto 109:9296ab0bfc11 64
Kojto 109:9296ab0bfc11 65 /* --- CR Register ---*/
Kojto 109:9296ab0bfc11 66 #define CR_OFFSET (PWR_OFFSET + 0x00)
Kojto 109:9296ab0bfc11 67 /* Alias word address of DBP bit */
Kojto 109:9296ab0bfc11 68 #define DBP_BitNumber POSITION_VAL(PWR_CR_DBP)
Kojto 109:9296ab0bfc11 69 #define CR_DBP_BB (PERIPH_BB_BASE + (CR_OFFSET * 32) + (DBP_BitNumber * 4))
Kojto 109:9296ab0bfc11 70
Kojto 109:9296ab0bfc11 71 /* Alias word address of PVDE bit */
Kojto 109:9296ab0bfc11 72 #define PVDE_BitNumber POSITION_VAL(PWR_CR_PVDE)
Kojto 109:9296ab0bfc11 73 #define CR_PVDE_BB (PERIPH_BB_BASE + (CR_OFFSET * 32) + (PVDE_BitNumber * 4))
Kojto 109:9296ab0bfc11 74
Kojto 109:9296ab0bfc11 75 /* --- CSR Register ---*/
Kojto 109:9296ab0bfc11 76 #define CSR_OFFSET (PWR_OFFSET + 0x04)
Kojto 109:9296ab0bfc11 77 /* Alias word address of EWUP1 bit */
Kojto 109:9296ab0bfc11 78 #define EWUP1_BitNumber POSITION_VAL(PWR_CSR_EWUP1)
Kojto 109:9296ab0bfc11 79 #define CSR_EWUP1_BB (PERIPH_BB_BASE + (CSR_OFFSET * 32) + (EWUP1_BitNumber * 4))
Kojto 109:9296ab0bfc11 80
Kojto 109:9296ab0bfc11 81 /* Alias word address of EWUP2 bit */
Kojto 109:9296ab0bfc11 82 #define EWUP2_BitNumber POSITION_VAL(PWR_CSR_EWUP2)
Kojto 109:9296ab0bfc11 83 #define CSR_EWUP2_BB (PERIPH_BB_BASE + (CSR_OFFSET * 32) + (EWUP2_BitNumber * 4))
Kojto 109:9296ab0bfc11 84
Kojto 109:9296ab0bfc11 85 /* Alias word address of EWUP3 bit */
Kojto 109:9296ab0bfc11 86 #define EWUP3_BitNumber POSITION_VAL(PWR_CSR_EWUP3)
Kojto 109:9296ab0bfc11 87 #define CSR_EWUP3_BB (PERIPH_BB_BASE + (CSR_OFFSET * 32) + (EWUP3_BitNumber * 4))
Kojto 109:9296ab0bfc11 88 /**
Kojto 109:9296ab0bfc11 89 * @}
Kojto 109:9296ab0bfc11 90 */
Kojto 109:9296ab0bfc11 91
Kojto 109:9296ab0bfc11 92 /** @defgroup PWR_Exported_Constants PWR Exported Constants
Kojto 109:9296ab0bfc11 93 * @{
Kojto 109:9296ab0bfc11 94 */
Kojto 109:9296ab0bfc11 95
Kojto 109:9296ab0bfc11 96 /** @defgroup PWR_WakeUp_Pins PWR WakeUp Pins
Kojto 109:9296ab0bfc11 97 * @{
Kojto 109:9296ab0bfc11 98 */
Kojto 109:9296ab0bfc11 99
Kojto 109:9296ab0bfc11 100 #define PWR_WAKEUP_PIN1 ((uint32_t)0x00)
Kojto 109:9296ab0bfc11 101 #define PWR_WAKEUP_PIN2 ((uint32_t)0x01)
Kojto 109:9296ab0bfc11 102 #define PWR_WAKEUP_PIN3 ((uint32_t)0x02)
Kojto 109:9296ab0bfc11 103 #define IS_PWR_WAKEUP_PIN(PIN) (((PIN) == PWR_WAKEUP_PIN1) || \
Kojto 109:9296ab0bfc11 104 ((PIN) == PWR_WAKEUP_PIN2) || \
Kojto 109:9296ab0bfc11 105 ((PIN) == PWR_WAKEUP_PIN3))
Kojto 109:9296ab0bfc11 106 /**
Kojto 109:9296ab0bfc11 107 * @}
Kojto 109:9296ab0bfc11 108 */
Kojto 109:9296ab0bfc11 109
Kojto 109:9296ab0bfc11 110 /** @defgroup PWR_Regulator_state_in_STOP_mode PWR Regulator state in STOP mode
Kojto 109:9296ab0bfc11 111 * @{
Kojto 109:9296ab0bfc11 112 */
Kojto 109:9296ab0bfc11 113 #define PWR_MAINREGULATOR_ON ((uint32_t)0x00000000)
Kojto 109:9296ab0bfc11 114 #define PWR_LOWPOWERREGULATOR_ON PWR_CR_LPDS
Kojto 109:9296ab0bfc11 115
Kojto 109:9296ab0bfc11 116 #define IS_PWR_REGULATOR(REGULATOR) (((REGULATOR) == PWR_MAINREGULATOR_ON) || \
Kojto 109:9296ab0bfc11 117 ((REGULATOR) == PWR_LOWPOWERREGULATOR_ON))
Kojto 109:9296ab0bfc11 118 /**
Kojto 109:9296ab0bfc11 119 * @}
Kojto 109:9296ab0bfc11 120 */
Kojto 109:9296ab0bfc11 121
Kojto 109:9296ab0bfc11 122 /** @defgroup PWR_SLEEP_mode_entry PWR SLEEP mode entry
Kojto 109:9296ab0bfc11 123 * @{
Kojto 109:9296ab0bfc11 124 */
Kojto 109:9296ab0bfc11 125 #define PWR_SLEEPENTRY_WFI ((uint8_t)0x01)
Kojto 109:9296ab0bfc11 126 #define PWR_SLEEPENTRY_WFE ((uint8_t)0x02)
Kojto 109:9296ab0bfc11 127 #define IS_PWR_SLEEP_ENTRY(ENTRY) (((ENTRY) == PWR_SLEEPENTRY_WFI) || ((ENTRY) == PWR_SLEEPENTRY_WFE))
Kojto 109:9296ab0bfc11 128 /**
Kojto 109:9296ab0bfc11 129 * @}
Kojto 109:9296ab0bfc11 130 */
Kojto 109:9296ab0bfc11 131
Kojto 109:9296ab0bfc11 132 /** @defgroup PWR_STOP_mode_entry PWR STOP mode entry
Kojto 109:9296ab0bfc11 133 * @{
Kojto 109:9296ab0bfc11 134 */
Kojto 109:9296ab0bfc11 135 #define PWR_STOPENTRY_WFI ((uint8_t)0x01)
Kojto 109:9296ab0bfc11 136 #define PWR_STOPENTRY_WFE ((uint8_t)0x02)
Kojto 109:9296ab0bfc11 137 #define IS_PWR_STOP_ENTRY(ENTRY) (((ENTRY) == PWR_STOPENTRY_WFI) || ((ENTRY) == PWR_STOPENTRY_WFE))
Kojto 109:9296ab0bfc11 138 /**
Kojto 109:9296ab0bfc11 139 * @}
Kojto 109:9296ab0bfc11 140 */
Kojto 109:9296ab0bfc11 141
Kojto 109:9296ab0bfc11 142 /** @defgroup PWR_Flag PWR Flag
Kojto 109:9296ab0bfc11 143 * @{
Kojto 109:9296ab0bfc11 144 */
Kojto 109:9296ab0bfc11 145 #define PWR_FLAG_WU PWR_CSR_WUF
Kojto 109:9296ab0bfc11 146 #define PWR_FLAG_SB PWR_CSR_SBF
Kojto 109:9296ab0bfc11 147 #define PWR_FLAG_PVDO PWR_CSR_PVDO
Kojto 109:9296ab0bfc11 148 #define PWR_FLAG_VREFINTRDY PWR_CSR_VREFINTRDYF
Kojto 109:9296ab0bfc11 149 #define IS_PWR_GET_FLAG(FLAG) (((FLAG) == PWR_FLAG_WU) || ((FLAG) == PWR_FLAG_SB) || \
Kojto 109:9296ab0bfc11 150 ((FLAG) == PWR_FLAG_PVDO) || ((FLAG) == PWR_FLAG_VREFINTRDY))
Kojto 109:9296ab0bfc11 151
Kojto 109:9296ab0bfc11 152
Kojto 109:9296ab0bfc11 153 /**
Kojto 109:9296ab0bfc11 154 * @}
Kojto 109:9296ab0bfc11 155 */
Kojto 109:9296ab0bfc11 156
Kojto 109:9296ab0bfc11 157 /**
Kojto 109:9296ab0bfc11 158 * @}
Kojto 109:9296ab0bfc11 159 */
Kojto 109:9296ab0bfc11 160
Kojto 109:9296ab0bfc11 161 /* Exported macro ------------------------------------------------------------*/
Kojto 109:9296ab0bfc11 162 /** @defgroup PWR_Exported_Macro PWR Exported Macro
Kojto 109:9296ab0bfc11 163 * @{
Kojto 109:9296ab0bfc11 164 */
Kojto 109:9296ab0bfc11 165
Kojto 109:9296ab0bfc11 166 /** @brief Check PWR flag is set or not.
Kojto 109:9296ab0bfc11 167 * @param __FLAG__: specifies the flag to check.
Kojto 109:9296ab0bfc11 168 * This parameter can be one of the following values:
Kojto 109:9296ab0bfc11 169 * @arg PWR_FLAG_WU: Wake Up flag. This flag indicates that a wakeup event
Kojto 109:9296ab0bfc11 170 * was received from the WKUP pin or from the RTC alarm (Alarm A
Kojto 109:9296ab0bfc11 171 * or Alarm B), RTC Tamper event, RTC TimeStamp event or RTC Wakeup.
Kojto 109:9296ab0bfc11 172 * An additional wakeup event is detected if the WKUP pin is enabled
Kojto 109:9296ab0bfc11 173 * (by setting the EWUP bit) when the WKUP pin level is already high.
Kojto 109:9296ab0bfc11 174 * @arg PWR_FLAG_SB: StandBy flag. This flag indicates that the system was
Kojto 109:9296ab0bfc11 175 * resumed from StandBy mode.
Kojto 109:9296ab0bfc11 176 * @arg PWR_FLAG_PVDO: PVD Output. This flag is valid only if PVD is enabled
Kojto 109:9296ab0bfc11 177 * by the HAL_PWR_EnablePVD() function. The PVD is stopped by Standby mode
Kojto 109:9296ab0bfc11 178 * For this reason, this bit is equal to 0 after Standby or reset
Kojto 109:9296ab0bfc11 179 * until the PVDE bit is set.
Kojto 109:9296ab0bfc11 180 * @arg PWR_FLAG_VREFINTRDY: This flag indicates that the internal reference
Kojto 109:9296ab0bfc11 181 * voltage VREFINT is ready.
Kojto 109:9296ab0bfc11 182 * @retval The new state of __FLAG__ (TRUE or FALSE).
Kojto 109:9296ab0bfc11 183 */
Kojto 109:9296ab0bfc11 184 #define __HAL_PWR_GET_FLAG(__FLAG__) ((PWR->CSR & (__FLAG__)) == (__FLAG__))
Kojto 109:9296ab0bfc11 185
Kojto 109:9296ab0bfc11 186 /** @brief Clear the PWR's pending flags.
Kojto 109:9296ab0bfc11 187 * @param __FLAG__: specifies the flag to clear.
Kojto 109:9296ab0bfc11 188 * This parameter can be one of the following values:
Kojto 109:9296ab0bfc11 189 * @arg PWR_FLAG_WU: Wake Up flag
Kojto 109:9296ab0bfc11 190 * @arg PWR_FLAG_SB: StandBy flag
Kojto 109:9296ab0bfc11 191 */
Kojto 109:9296ab0bfc11 192 #define __HAL_PWR_CLEAR_FLAG(__FLAG__) (PWR->CR |= (__FLAG__) << 2)
Kojto 109:9296ab0bfc11 193
Kojto 109:9296ab0bfc11 194 /**
Kojto 109:9296ab0bfc11 195 * @}
Kojto 109:9296ab0bfc11 196 */
Kojto 109:9296ab0bfc11 197
Kojto 109:9296ab0bfc11 198 /* Include PWR HAL Extended module */
Kojto 109:9296ab0bfc11 199 #include "stm32f3xx_hal_pwr_ex.h"
Kojto 109:9296ab0bfc11 200
Kojto 109:9296ab0bfc11 201 /* Exported functions --------------------------------------------------------*/
Kojto 109:9296ab0bfc11 202
Kojto 109:9296ab0bfc11 203 /** @addtogroup PWR_Exported_Functions PWR Exported Functions
Kojto 109:9296ab0bfc11 204 * @{
Kojto 109:9296ab0bfc11 205 */
Kojto 109:9296ab0bfc11 206
Kojto 109:9296ab0bfc11 207 /** @addtogroup PWR_Exported_Functions_Group1 Initialization and de-initialization functions
Kojto 109:9296ab0bfc11 208 * @{
Kojto 109:9296ab0bfc11 209 */
Kojto 109:9296ab0bfc11 210
Kojto 109:9296ab0bfc11 211 /* Initialization and de-initialization functions *****************************/
Kojto 109:9296ab0bfc11 212 void HAL_PWR_DeInit(void);
Kojto 109:9296ab0bfc11 213
Kojto 109:9296ab0bfc11 214 /**
Kojto 109:9296ab0bfc11 215 * @}
Kojto 109:9296ab0bfc11 216 */
Kojto 109:9296ab0bfc11 217
Kojto 109:9296ab0bfc11 218 /** @addtogroup PWR_Exported_Functions_Group2 Peripheral Control functions
Kojto 109:9296ab0bfc11 219 * @{
Kojto 109:9296ab0bfc11 220 */
Kojto 109:9296ab0bfc11 221
Kojto 109:9296ab0bfc11 222 /* Peripheral Control functions **********************************************/
Kojto 109:9296ab0bfc11 223 void HAL_PWR_EnableBkUpAccess(void);
Kojto 109:9296ab0bfc11 224 void HAL_PWR_DisableBkUpAccess(void);
Kojto 109:9296ab0bfc11 225
Kojto 109:9296ab0bfc11 226 /* WakeUp pins configuration functions ****************************************/
Kojto 109:9296ab0bfc11 227 void HAL_PWR_EnableWakeUpPin(uint32_t WakeUpPinx);
Kojto 109:9296ab0bfc11 228 void HAL_PWR_DisableWakeUpPin(uint32_t WakeUpPinx);
Kojto 109:9296ab0bfc11 229
Kojto 109:9296ab0bfc11 230 /* Low Power modes configuration functions ************************************/
Kojto 109:9296ab0bfc11 231 void HAL_PWR_EnterSTOPMode(uint32_t Regulator, uint8_t STOPEntry);
Kojto 109:9296ab0bfc11 232 void HAL_PWR_EnterSLEEPMode(uint32_t Regulator, uint8_t SLEEPEntry);
Kojto 109:9296ab0bfc11 233 void HAL_PWR_EnterSTANDBYMode(void);
Kojto 109:9296ab0bfc11 234
Kojto 109:9296ab0bfc11 235 /**
Kojto 109:9296ab0bfc11 236 * @}
Kojto 109:9296ab0bfc11 237 */
Kojto 109:9296ab0bfc11 238
Kojto 109:9296ab0bfc11 239 /**
Kojto 109:9296ab0bfc11 240 * @}
Kojto 109:9296ab0bfc11 241 */
Kojto 109:9296ab0bfc11 242
Kojto 109:9296ab0bfc11 243 /**
Kojto 109:9296ab0bfc11 244 * @}
Kojto 109:9296ab0bfc11 245 */
Kojto 109:9296ab0bfc11 246
Kojto 109:9296ab0bfc11 247 /**
Kojto 109:9296ab0bfc11 248 * @}
Kojto 109:9296ab0bfc11 249 */
Kojto 109:9296ab0bfc11 250
Kojto 109:9296ab0bfc11 251 #ifdef __cplusplus
Kojto 109:9296ab0bfc11 252 }
Kojto 109:9296ab0bfc11 253 #endif
Kojto 109:9296ab0bfc11 254
Kojto 109:9296ab0bfc11 255
Kojto 109:9296ab0bfc11 256 #endif /* __STM32F3xx_HAL_PWR_H */
Kojto 109:9296ab0bfc11 257
Kojto 109:9296ab0bfc11 258 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/