mbed official / mbed

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

Committer:
Kojto
Date:
Tue Feb 16 14:28:01 2016 +0000
Revision:
114:252557024ec3
Parent:
109:9296ab0bfc11
Child:
122:f9eeca106725
Release 114 of the mbed library

Changes:
- Atmel SAM - warnings fixes
- B96B F446VE - hw control flow addition
- Remove of GCC CW which was not active
- Remove GCC CS, not released anymore - deprecated

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_ex.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 Extended 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_EX_H
Kojto 109:9296ab0bfc11 40 #define __STM32F3xx_HAL_PWR_EX_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 PWREx
Kojto 109:9296ab0bfc11 54 * @{
Kojto 109:9296ab0bfc11 55 */
Kojto 109:9296ab0bfc11 56
Kojto 109:9296ab0bfc11 57 /* Exported types ------------------------------------------------------------*/
Kojto 109:9296ab0bfc11 58
Kojto 109:9296ab0bfc11 59 /** @defgroup PWREx_Exported_Types PWR Extended Exported Types
Kojto 109:9296ab0bfc11 60 * @{
Kojto 109:9296ab0bfc11 61 */
Kojto 109:9296ab0bfc11 62 #if defined(STM32F302xE) || defined(STM32F303xE) || \
Kojto 109:9296ab0bfc11 63 defined(STM32F302xC) || defined(STM32F303xC) || \
Kojto 109:9296ab0bfc11 64 defined(STM32F303x8) || defined(STM32F334x8) || \
Kojto 109:9296ab0bfc11 65 defined(STM32F301x8) || defined(STM32F302x8) || \
Kojto 109:9296ab0bfc11 66 defined(STM32F373xC)
Kojto 109:9296ab0bfc11 67 /**
Kojto 109:9296ab0bfc11 68 * @brief PWR PVD configuration structure definition
Kojto 109:9296ab0bfc11 69 */
Kojto 109:9296ab0bfc11 70 typedef struct
Kojto 109:9296ab0bfc11 71 {
Kojto 109:9296ab0bfc11 72 uint32_t PVDLevel; /*!< PVDLevel: Specifies the PVD detection level
Kojto 109:9296ab0bfc11 73 This parameter can be a value of @ref PWREx_PVD_detection_level */
Kojto 109:9296ab0bfc11 74
Kojto 109:9296ab0bfc11 75 uint32_t Mode; /*!< Mode: Specifies the operating mode for the selected pins.
Kojto 109:9296ab0bfc11 76 This parameter can be a value of @ref PWREx_PVD_Mode */
Kojto 109:9296ab0bfc11 77 }PWR_PVDTypeDef;
Kojto 109:9296ab0bfc11 78 #endif /* STM32F302xE || STM32F303xE || */
Kojto 109:9296ab0bfc11 79 /* STM32F302xC || STM32F303xC || */
Kojto 109:9296ab0bfc11 80 /* STM32F303x8 || STM32F334x8 || */
Kojto 109:9296ab0bfc11 81 /* STM32F301x8 || STM32F302x8 || */
Kojto 109:9296ab0bfc11 82 /* STM32F373xC */
Kojto 109:9296ab0bfc11 83
Kojto 109:9296ab0bfc11 84 /**
Kojto 109:9296ab0bfc11 85 * @}
Kojto 109:9296ab0bfc11 86 */
Kojto 109:9296ab0bfc11 87
Kojto 109:9296ab0bfc11 88 /* Exported constants --------------------------------------------------------*/
Kojto 109:9296ab0bfc11 89 /** @defgroup PWREx_Exported_Constants PWR Extended Exported Constants
Kojto 109:9296ab0bfc11 90 * @{
Kojto 109:9296ab0bfc11 91 */
Kojto 109:9296ab0bfc11 92
Kojto 109:9296ab0bfc11 93 #if defined(STM32F302xE) || defined(STM32F303xE) || \
Kojto 109:9296ab0bfc11 94 defined(STM32F302xC) || defined(STM32F303xC) || \
Kojto 109:9296ab0bfc11 95 defined(STM32F303x8) || defined(STM32F334x8) || \
Kojto 109:9296ab0bfc11 96 defined(STM32F301x8) || defined(STM32F302x8) || \
Kojto 109:9296ab0bfc11 97 defined(STM32F373xC)
Kojto 109:9296ab0bfc11 98
Kojto 109:9296ab0bfc11 99 /** @defgroup PWREx_PVD_detection_level PWR Extended PVD detection level
Kojto 109:9296ab0bfc11 100 * @{
Kojto 109:9296ab0bfc11 101 */
Kojto 109:9296ab0bfc11 102 #define PWR_PVDLEVEL_0 PWR_CR_PLS_LEV0
Kojto 109:9296ab0bfc11 103 #define PWR_PVDLEVEL_1 PWR_CR_PLS_LEV1
Kojto 109:9296ab0bfc11 104 #define PWR_PVDLEVEL_2 PWR_CR_PLS_LEV2
Kojto 109:9296ab0bfc11 105 #define PWR_PVDLEVEL_3 PWR_CR_PLS_LEV3
Kojto 109:9296ab0bfc11 106 #define PWR_PVDLEVEL_4 PWR_CR_PLS_LEV4
Kojto 109:9296ab0bfc11 107 #define PWR_PVDLEVEL_5 PWR_CR_PLS_LEV5
Kojto 109:9296ab0bfc11 108 #define PWR_PVDLEVEL_6 PWR_CR_PLS_LEV6
Kojto 109:9296ab0bfc11 109 #define PWR_PVDLEVEL_7 PWR_CR_PLS_LEV7
Kojto 109:9296ab0bfc11 110 #define IS_PWR_PVD_LEVEL(LEVEL) (((LEVEL) == PWR_PVDLEVEL_0) || ((LEVEL) == PWR_PVDLEVEL_1)|| \
Kojto 109:9296ab0bfc11 111 ((LEVEL) == PWR_PVDLEVEL_2) || ((LEVEL) == PWR_PVDLEVEL_3)|| \
Kojto 109:9296ab0bfc11 112 ((LEVEL) == PWR_PVDLEVEL_4) || ((LEVEL) == PWR_PVDLEVEL_5)|| \
Kojto 109:9296ab0bfc11 113 ((LEVEL) == PWR_PVDLEVEL_6) || ((LEVEL) == PWR_PVDLEVEL_7))
Kojto 109:9296ab0bfc11 114 /**
Kojto 109:9296ab0bfc11 115 * @}
Kojto 109:9296ab0bfc11 116 */
Kojto 109:9296ab0bfc11 117
Kojto 109:9296ab0bfc11 118 /** @defgroup PWREx_PVD_Mode PWR Extended PVD Mode
Kojto 109:9296ab0bfc11 119 * @{
Kojto 109:9296ab0bfc11 120 */
Kojto 109:9296ab0bfc11 121 #define PWR_PVD_MODE_NORMAL ((uint32_t)0x00000000) /*!< basic mode is used */
Kojto 109:9296ab0bfc11 122 #define PWR_PVD_MODE_IT_RISING ((uint32_t)0x00010001) /*!< External Interrupt Mode with Rising edge trigger detection */
Kojto 109:9296ab0bfc11 123 #define PWR_PVD_MODE_IT_FALLING ((uint32_t)0x00010002) /*!< External Interrupt Mode with Falling edge trigger detection */
Kojto 109:9296ab0bfc11 124 #define PWR_PVD_MODE_IT_RISING_FALLING ((uint32_t)0x00010003) /*!< External Interrupt Mode with Rising/Falling edge trigger detection */
Kojto 109:9296ab0bfc11 125 #define PWR_PVD_MODE_EVENT_RISING ((uint32_t)0x00020001) /*!< Event Mode with Rising edge trigger detection */
Kojto 109:9296ab0bfc11 126 #define PWR_PVD_MODE_EVENT_FALLING ((uint32_t)0x00020002) /*!< Event Mode with Falling edge trigger detection */
Kojto 109:9296ab0bfc11 127 #define PWR_PVD_MODE_EVENT_RISING_FALLING ((uint32_t)0x00020003) /*!< Event Mode with Rising/Falling edge trigger detection */
Kojto 109:9296ab0bfc11 128
Kojto 109:9296ab0bfc11 129 #define IS_PWR_PVD_MODE(MODE) (((MODE) == PWR_PVD_MODE_IT_RISING)|| ((MODE) == PWR_PVD_MODE_IT_FALLING) || \
Kojto 109:9296ab0bfc11 130 ((MODE) == PWR_PVD_MODE_IT_RISING_FALLING) || ((MODE) == PWR_PVD_MODE_EVENT_RISING) || \
Kojto 109:9296ab0bfc11 131 ((MODE) == PWR_PVD_MODE_EVENT_FALLING) || ((MODE) == PWR_PVD_MODE_EVENT_RISING_FALLING) || \
Kojto 109:9296ab0bfc11 132 ((MODE) == PWR_PVD_MODE_NORMAL))
Kojto 109:9296ab0bfc11 133 /**
Kojto 109:9296ab0bfc11 134 * @}
Kojto 109:9296ab0bfc11 135 */
Kojto 109:9296ab0bfc11 136
Kojto 109:9296ab0bfc11 137 #define PWR_EXTI_LINE_PVD ((uint32_t)0x00010000) /*!< External interrupt line 16 Connected to the PVD EXTI Line */
Kojto 109:9296ab0bfc11 138
Kojto 109:9296ab0bfc11 139 #endif /* STM32F302xE || STM32F303xE || */
Kojto 109:9296ab0bfc11 140 /* STM32F302xC || STM32F303xC || */
Kojto 109:9296ab0bfc11 141 /* STM32F303x8 || STM32F334x8 || */
Kojto 109:9296ab0bfc11 142 /* STM32F301x8 || STM32F302x8 || */
Kojto 109:9296ab0bfc11 143 /* STM32F373xC */
Kojto 109:9296ab0bfc11 144
Kojto 109:9296ab0bfc11 145 #if defined(STM32F373xC) || defined(STM32F378xx)
Kojto 109:9296ab0bfc11 146 /** @defgroup PWREx_SDADC_ANALOGx PWR Extended SDADC ANALOGx
Kojto 109:9296ab0bfc11 147 * @{
Kojto 109:9296ab0bfc11 148 */
Kojto 109:9296ab0bfc11 149 #define PWR_SDADC_ANALOG1 ((uint32_t)PWR_CR_SDADC1EN)
Kojto 109:9296ab0bfc11 150 #define PWR_SDADC_ANALOG2 ((uint32_t)PWR_CR_SDADC2EN)
Kojto 109:9296ab0bfc11 151 #define PWR_SDADC_ANALOG3 ((uint32_t)PWR_CR_SDADC3EN)
Kojto 109:9296ab0bfc11 152 #define IS_PWR_SDADC_ANALOG(SDADC) (((SDADC) == PWR_SDADC_ANALOG1) || \
Kojto 109:9296ab0bfc11 153 ((SDADC) == PWR_SDADC_ANALOG2) || \
Kojto 109:9296ab0bfc11 154 ((SDADC) == PWR_SDADC_ANALOG3))
Kojto 109:9296ab0bfc11 155 /**
Kojto 109:9296ab0bfc11 156 * @}
Kojto 109:9296ab0bfc11 157 */
Kojto 109:9296ab0bfc11 158 #endif /* STM32F373xC || STM32F378xx */
Kojto 109:9296ab0bfc11 159
Kojto 109:9296ab0bfc11 160 /**
Kojto 109:9296ab0bfc11 161 * @}
Kojto 109:9296ab0bfc11 162 */
Kojto 109:9296ab0bfc11 163
Kojto 109:9296ab0bfc11 164 /* Exported macro ------------------------------------------------------------*/
Kojto 109:9296ab0bfc11 165 /** @defgroup PWREx_Exported_Macros PWR Extended Exported Macros
Kojto 109:9296ab0bfc11 166 * @{
Kojto 109:9296ab0bfc11 167 */
Kojto 109:9296ab0bfc11 168
Kojto 109:9296ab0bfc11 169 #if defined(STM32F302xE) || defined(STM32F303xE) || \
Kojto 109:9296ab0bfc11 170 defined(STM32F302xC) || defined(STM32F303xC) || \
Kojto 109:9296ab0bfc11 171 defined(STM32F303x8) || defined(STM32F334x8) || \
Kojto 109:9296ab0bfc11 172 defined(STM32F301x8) || defined(STM32F302x8) || \
Kojto 109:9296ab0bfc11 173 defined(STM32F373xC)
Kojto 109:9296ab0bfc11 174
Kojto 109:9296ab0bfc11 175 /**
Kojto 109:9296ab0bfc11 176 * @brief Enable interrupt on PVD Exti Line 16.
Kojto 109:9296ab0bfc11 177 * @retval None.
Kojto 109:9296ab0bfc11 178 */
Kojto 109:9296ab0bfc11 179 #define __HAL_PWR_PVD_EXTI_ENABLE_IT() (EXTI->IMR |= (PWR_EXTI_LINE_PVD))
Kojto 109:9296ab0bfc11 180
Kojto 109:9296ab0bfc11 181 /**
Kojto 109:9296ab0bfc11 182 * @brief Disable interrupt on PVD Exti Line 16.
Kojto 109:9296ab0bfc11 183 * @retval None.
Kojto 109:9296ab0bfc11 184 */
Kojto 109:9296ab0bfc11 185 #define __HAL_PWR_PVD_EXTI_DISABLE_IT() (EXTI->IMR &= ~(PWR_EXTI_LINE_PVD))
Kojto 109:9296ab0bfc11 186
Kojto 109:9296ab0bfc11 187 /**
Kojto 109:9296ab0bfc11 188 * @brief Generate a Software interrupt on selected EXTI line.
Kojto 109:9296ab0bfc11 189 * @retval None.
Kojto 109:9296ab0bfc11 190 */
Kojto 109:9296ab0bfc11 191 #define __HAL_PWR_PVD_EXTI_GENERATE_SWIT() (EXTI->SWIER |= (PWR_EXTI_LINE_PVD))
Kojto 109:9296ab0bfc11 192
Kojto 109:9296ab0bfc11 193 /**
Kojto 109:9296ab0bfc11 194 * @brief Enable event on PVD Exti Line 16.
Kojto 109:9296ab0bfc11 195 * @retval None.
Kojto 109:9296ab0bfc11 196 */
Kojto 109:9296ab0bfc11 197 #define __HAL_PWR_PVD_EXTI_ENABLE_EVENT() (EXTI->EMR |= (PWR_EXTI_LINE_PVD))
Kojto 109:9296ab0bfc11 198
Kojto 109:9296ab0bfc11 199 /**
Kojto 109:9296ab0bfc11 200 * @brief Disable event on PVD Exti Line 16.
Kojto 109:9296ab0bfc11 201 * @retval None.
Kojto 109:9296ab0bfc11 202 */
Kojto 109:9296ab0bfc11 203 #define __HAL_PWR_PVD_EXTI_DISABLE_EVENT() (EXTI->EMR &= ~(PWR_EXTI_LINE_PVD))
Kojto 109:9296ab0bfc11 204
Kojto 109:9296ab0bfc11 205 /**
Kojto 109:9296ab0bfc11 206 * @brief PVD EXTI line configuration: clear falling edge trigger and set rising edge.
Kojto 109:9296ab0bfc11 207 * @retval None.
Kojto 109:9296ab0bfc11 208 */
Kojto 109:9296ab0bfc11 209 #define __HAL_PWR_PVD_EXTI_CLEAR_EGDE_TRIGGER() EXTI->FTSR &= ~(PWR_EXTI_LINE_PVD); \
Kojto 109:9296ab0bfc11 210 EXTI->RTSR &= ~(PWR_EXTI_LINE_PVD)
Kojto 109:9296ab0bfc11 211
Kojto 109:9296ab0bfc11 212 /**
Kojto 109:9296ab0bfc11 213 * @brief PVD EXTI line configuration: set falling edge trigger.
Kojto 109:9296ab0bfc11 214 * @retval None.
Kojto 109:9296ab0bfc11 215 */
Kojto 109:9296ab0bfc11 216 #define __HAL_PWR_PVD_EXTI_SET_FALLING_EGDE_TRIGGER() EXTI->FTSR |= (PWR_EXTI_LINE_PVD)
Kojto 109:9296ab0bfc11 217
Kojto 109:9296ab0bfc11 218 /**
Kojto 109:9296ab0bfc11 219 * @brief PVD EXTI line configuration: set rising edge trigger.
Kojto 109:9296ab0bfc11 220 * @retval None.
Kojto 109:9296ab0bfc11 221 */
Kojto 109:9296ab0bfc11 222 #define __HAL_PWR_PVD_EXTI_SET_RISING_EDGE_TRIGGER() EXTI->RTSR |= (PWR_EXTI_LINE_PVD)
Kojto 109:9296ab0bfc11 223
Kojto 109:9296ab0bfc11 224 /**
Kojto 109:9296ab0bfc11 225 * @brief Check whether the specified PVD EXTI interrupt flag is set or not.
Kojto 109:9296ab0bfc11 226 * @retval EXTI PVD Line Status.
Kojto 109:9296ab0bfc11 227 */
Kojto 109:9296ab0bfc11 228 #define __HAL_PWR_PVD_EXTI_GET_FLAG() (EXTI->PR & (PWR_EXTI_LINE_PVD))
Kojto 109:9296ab0bfc11 229
Kojto 109:9296ab0bfc11 230 /**
Kojto 109:9296ab0bfc11 231 * @brief Clear the PVD EXTI flag.
Kojto 109:9296ab0bfc11 232 * @retval None.
Kojto 109:9296ab0bfc11 233 */
Kojto 109:9296ab0bfc11 234 #define __HAL_PWR_PVD_EXTI_CLEAR_FLAG() (EXTI->PR = (PWR_EXTI_LINE_PVD))
Kojto 109:9296ab0bfc11 235
Kojto 109:9296ab0bfc11 236 #endif /* STM32F302xE || STM32F303xE || */
Kojto 109:9296ab0bfc11 237 /* STM32F302xC || STM32F303xC || */
Kojto 109:9296ab0bfc11 238 /* STM32F303x8 || STM32F334x8 || */
Kojto 109:9296ab0bfc11 239 /* STM32F301x8 || STM32F302x8 || */
Kojto 109:9296ab0bfc11 240 /* STM32F373xC */
Kojto 109:9296ab0bfc11 241
Kojto 109:9296ab0bfc11 242 /**
Kojto 109:9296ab0bfc11 243 * @}
Kojto 109:9296ab0bfc11 244 */
Kojto 109:9296ab0bfc11 245
Kojto 109:9296ab0bfc11 246 /* Exported functions --------------------------------------------------------*/
Kojto 109:9296ab0bfc11 247
Kojto 109:9296ab0bfc11 248 /** @addtogroup PWREx_Exported_Functions PWR Extended Exported Functions
Kojto 109:9296ab0bfc11 249 * @{
Kojto 109:9296ab0bfc11 250 */
Kojto 109:9296ab0bfc11 251
Kojto 109:9296ab0bfc11 252 /** @addtogroup PWREx_Exported_Functions_Group1 Peripheral Extended Control Functions
Kojto 109:9296ab0bfc11 253 * @{
Kojto 109:9296ab0bfc11 254 */
Kojto 109:9296ab0bfc11 255 /* Peripheral Extended control functions **************************************/
Kojto 109:9296ab0bfc11 256 #if defined(STM32F302xE) || defined(STM32F303xE) || \
Kojto 109:9296ab0bfc11 257 defined(STM32F302xC) || defined(STM32F303xC) || \
Kojto 109:9296ab0bfc11 258 defined(STM32F303x8) || defined(STM32F334x8) || \
Kojto 109:9296ab0bfc11 259 defined(STM32F301x8) || defined(STM32F302x8) || \
Kojto 109:9296ab0bfc11 260 defined(STM32F373xC)
Kojto 109:9296ab0bfc11 261 void HAL_PWR_PVDConfig(PWR_PVDTypeDef *sConfigPVD);
Kojto 109:9296ab0bfc11 262 void HAL_PWR_EnablePVD(void);
Kojto 109:9296ab0bfc11 263 void HAL_PWR_DisablePVD(void);
Kojto 109:9296ab0bfc11 264 void HAL_PWR_PVD_IRQHandler(void);
Kojto 109:9296ab0bfc11 265 void HAL_PWR_PVDCallback(void);
Kojto 109:9296ab0bfc11 266 #endif /* STM32F302xE || STM32F303xE || */
Kojto 109:9296ab0bfc11 267 /* STM32F302xC || STM32F303xC || */
Kojto 109:9296ab0bfc11 268 /* STM32F303x8 || STM32F334x8 || */
Kojto 109:9296ab0bfc11 269 /* STM32F301x8 || STM32F302x8 || */
Kojto 109:9296ab0bfc11 270 /* STM32F373xC */
Kojto 109:9296ab0bfc11 271
Kojto 109:9296ab0bfc11 272 #if defined(STM32F373xC) || defined(STM32F378xx)
Kojto 109:9296ab0bfc11 273 void HAL_PWREx_EnableSDADCAnalog(uint32_t Analogx);
Kojto 109:9296ab0bfc11 274 void HAL_PWREx_DisableSDADCAnalog(uint32_t Analogx);
Kojto 109:9296ab0bfc11 275 #endif /* STM32F373xC || STM32F378xx */
Kojto 109:9296ab0bfc11 276
Kojto 109:9296ab0bfc11 277 /**
Kojto 109:9296ab0bfc11 278 * @}
Kojto 109:9296ab0bfc11 279 */
Kojto 109:9296ab0bfc11 280
Kojto 109:9296ab0bfc11 281 /**
Kojto 109:9296ab0bfc11 282 * @}
Kojto 109:9296ab0bfc11 283 */
Kojto 109:9296ab0bfc11 284
Kojto 109:9296ab0bfc11 285 /**
Kojto 109:9296ab0bfc11 286 * @}
Kojto 109:9296ab0bfc11 287 */
Kojto 109:9296ab0bfc11 288
Kojto 109:9296ab0bfc11 289 /**
Kojto 109:9296ab0bfc11 290 * @}
Kojto 109:9296ab0bfc11 291 */
Kojto 109:9296ab0bfc11 292
Kojto 109:9296ab0bfc11 293 #ifdef __cplusplus
Kojto 109:9296ab0bfc11 294 }
Kojto 109:9296ab0bfc11 295 #endif
Kojto 109:9296ab0bfc11 296
Kojto 109:9296ab0bfc11 297 #endif /* __STM32F3xx_HAL_PWR_EX_H */
Kojto 109:9296ab0bfc11 298
Kojto 109:9296ab0bfc11 299 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/