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.
TARGET_DISCO_L476VG/stm32l4xx_ll_wwdg.h@122:f9eeca106725, 2016-07-07 (annotated)
- Committer:
- Kojto
- Date:
- Thu Jul 07 14:34:11 2016 +0100
- Revision:
- 122:f9eeca106725
Release 122 of the mbed library
Changes:
- new targets - Nucleo L432KC, Beetle, Nucleo F446ZE, Nucleo L011K4
- Thread safety addition - mbed API should contain a statement about thread safety
- critical section API addition
- CAS API (core_util_atomic_incr/decr)
- DEVICE_ are generated from targets.json file, device.h deprecated
- Callback replaces FunctionPointer to provide std like interface
- mbed HAL API docs improvements
- toolchain - prexif attributes with MBED_
- add new attributes - packed, weak, forcedinline, align
- target.json - contains targets definitions
- ST - L1XX - Cube update to 1.5
- SPI clock selection fix (clock from APB domain)
- F7 - Cube update v1.4.0
- L0 - baudrate init fix
- L1 - Cube update v1.5
- F3 - baudrate init fix, 3 targets CAN support
- F4 - Cube update v1.12.0, 3 targets CAN support
- L4XX - Cube update v1.5.1
- F0 - update Cube to v1.5.0
- L4 - 2 targets (L476RG/VG) CAN support
- NXP - pwm clock fix for KSDK2 MCU
- LPC2368 - remove ARM toolchain support - due to regression
- KSDK2 - fix SPI , I2C address and repeat start
- Silabs - some fixes backported from mbed 3
- Renesas - RZ_A1H - SystemCoreClockUpdate addition
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Kojto | 122:f9eeca106725 | 1 | /** |
Kojto | 122:f9eeca106725 | 2 | ****************************************************************************** |
Kojto | 122:f9eeca106725 | 3 | * @file stm32l4xx_ll_wwdg.h |
Kojto | 122:f9eeca106725 | 4 | * @author MCD Application Team |
Kojto | 122:f9eeca106725 | 5 | * @version V1.5.1 |
Kojto | 122:f9eeca106725 | 6 | * @date 31-May-2016 |
Kojto | 122:f9eeca106725 | 7 | * @brief Header file of WWDG LL module. |
Kojto | 122:f9eeca106725 | 8 | ****************************************************************************** |
Kojto | 122:f9eeca106725 | 9 | * @attention |
Kojto | 122:f9eeca106725 | 10 | * |
Kojto | 122:f9eeca106725 | 11 | * <h2><center>© COPYRIGHT(c) 2016 STMicroelectronics</center></h2> |
Kojto | 122:f9eeca106725 | 12 | * |
Kojto | 122:f9eeca106725 | 13 | * Redistribution and use in source and binary forms, with or without modification, |
Kojto | 122:f9eeca106725 | 14 | * are permitted provided that the following conditions are met: |
Kojto | 122:f9eeca106725 | 15 | * 1. Redistributions of source code must retain the above copyright notice, |
Kojto | 122:f9eeca106725 | 16 | * this list of conditions and the following disclaimer. |
Kojto | 122:f9eeca106725 | 17 | * 2. Redistributions in binary form must reproduce the above copyright notice, |
Kojto | 122:f9eeca106725 | 18 | * this list of conditions and the following disclaimer in the documentation |
Kojto | 122:f9eeca106725 | 19 | * and/or other materials provided with the distribution. |
Kojto | 122:f9eeca106725 | 20 | * 3. Neither the name of STMicroelectronics nor the names of its contributors |
Kojto | 122:f9eeca106725 | 21 | * may be used to endorse or promote products derived from this software |
Kojto | 122:f9eeca106725 | 22 | * without specific prior written permission. |
Kojto | 122:f9eeca106725 | 23 | * |
Kojto | 122:f9eeca106725 | 24 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
Kojto | 122:f9eeca106725 | 25 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
Kojto | 122:f9eeca106725 | 26 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
Kojto | 122:f9eeca106725 | 27 | * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE |
Kojto | 122:f9eeca106725 | 28 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
Kojto | 122:f9eeca106725 | 29 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
Kojto | 122:f9eeca106725 | 30 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
Kojto | 122:f9eeca106725 | 31 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
Kojto | 122:f9eeca106725 | 32 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
Kojto | 122:f9eeca106725 | 33 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Kojto | 122:f9eeca106725 | 34 | * |
Kojto | 122:f9eeca106725 | 35 | ****************************************************************************** |
Kojto | 122:f9eeca106725 | 36 | */ |
Kojto | 122:f9eeca106725 | 37 | |
Kojto | 122:f9eeca106725 | 38 | /* Define to prevent recursive inclusion -------------------------------------*/ |
Kojto | 122:f9eeca106725 | 39 | #ifndef __STM32L4xx_LL_WWDG_H |
Kojto | 122:f9eeca106725 | 40 | #define __STM32L4xx_LL_WWDG_H |
Kojto | 122:f9eeca106725 | 41 | |
Kojto | 122:f9eeca106725 | 42 | #ifdef __cplusplus |
Kojto | 122:f9eeca106725 | 43 | extern "C" { |
Kojto | 122:f9eeca106725 | 44 | #endif |
Kojto | 122:f9eeca106725 | 45 | |
Kojto | 122:f9eeca106725 | 46 | /* Includes ------------------------------------------------------------------*/ |
Kojto | 122:f9eeca106725 | 47 | #include "stm32l4xx.h" |
Kojto | 122:f9eeca106725 | 48 | |
Kojto | 122:f9eeca106725 | 49 | /** @addtogroup STM32L4xx_LL_Driver |
Kojto | 122:f9eeca106725 | 50 | * @{ |
Kojto | 122:f9eeca106725 | 51 | */ |
Kojto | 122:f9eeca106725 | 52 | |
Kojto | 122:f9eeca106725 | 53 | #if defined (WWDG) |
Kojto | 122:f9eeca106725 | 54 | |
Kojto | 122:f9eeca106725 | 55 | /** @defgroup WWDG_LL WWDG |
Kojto | 122:f9eeca106725 | 56 | * @{ |
Kojto | 122:f9eeca106725 | 57 | */ |
Kojto | 122:f9eeca106725 | 58 | |
Kojto | 122:f9eeca106725 | 59 | /* Private types -------------------------------------------------------------*/ |
Kojto | 122:f9eeca106725 | 60 | /* Private variables ---------------------------------------------------------*/ |
Kojto | 122:f9eeca106725 | 61 | |
Kojto | 122:f9eeca106725 | 62 | /* Private constants ---------------------------------------------------------*/ |
Kojto | 122:f9eeca106725 | 63 | |
Kojto | 122:f9eeca106725 | 64 | /* Private macros ------------------------------------------------------------*/ |
Kojto | 122:f9eeca106725 | 65 | |
Kojto | 122:f9eeca106725 | 66 | /* Exported types ------------------------------------------------------------*/ |
Kojto | 122:f9eeca106725 | 67 | /* Exported constants --------------------------------------------------------*/ |
Kojto | 122:f9eeca106725 | 68 | /** @defgroup WWDG_LL_Exported_Constants WWDG Exported Constants |
Kojto | 122:f9eeca106725 | 69 | * @{ |
Kojto | 122:f9eeca106725 | 70 | */ |
Kojto | 122:f9eeca106725 | 71 | |
Kojto | 122:f9eeca106725 | 72 | |
Kojto | 122:f9eeca106725 | 73 | /** @defgroup WWDG_LL_EC_IT IT Defines |
Kojto | 122:f9eeca106725 | 74 | * @brief IT defines which can be used with LL_WWDG_ReadReg and LL_WWDG_WriteReg functions |
Kojto | 122:f9eeca106725 | 75 | * @{ |
Kojto | 122:f9eeca106725 | 76 | */ |
Kojto | 122:f9eeca106725 | 77 | #define LL_WWDG_CFR_EWI WWDG_CFR_EWI |
Kojto | 122:f9eeca106725 | 78 | /** |
Kojto | 122:f9eeca106725 | 79 | * @} |
Kojto | 122:f9eeca106725 | 80 | */ |
Kojto | 122:f9eeca106725 | 81 | |
Kojto | 122:f9eeca106725 | 82 | /** @defgroup WWDG_LL_EC_PRESCALER PRESCALER |
Kojto | 122:f9eeca106725 | 83 | * @{ |
Kojto | 122:f9eeca106725 | 84 | */ |
Kojto | 122:f9eeca106725 | 85 | #define LL_WWDG_PRESCALER_1 (uint32_t)0x00000000U /*!< WWDG counter clock = (PCLK1/4096)/1 */ |
Kojto | 122:f9eeca106725 | 86 | #define LL_WWDG_PRESCALER_2 WWDG_CFR_WDGTB_0 /*!< WWDG counter clock = (PCLK1/4096)/2 */ |
Kojto | 122:f9eeca106725 | 87 | #define LL_WWDG_PRESCALER_4 WWDG_CFR_WDGTB_1 /*!< WWDG counter clock = (PCLK1/4096)/4 */ |
Kojto | 122:f9eeca106725 | 88 | #define LL_WWDG_PRESCALER_8 (WWDG_CFR_WDGTB_0 | WWDG_CFR_WDGTB_1) /*!< WWDG counter clock = (PCLK1/4096)/8 */ |
Kojto | 122:f9eeca106725 | 89 | /** |
Kojto | 122:f9eeca106725 | 90 | * @} |
Kojto | 122:f9eeca106725 | 91 | */ |
Kojto | 122:f9eeca106725 | 92 | |
Kojto | 122:f9eeca106725 | 93 | /** |
Kojto | 122:f9eeca106725 | 94 | * @} |
Kojto | 122:f9eeca106725 | 95 | */ |
Kojto | 122:f9eeca106725 | 96 | |
Kojto | 122:f9eeca106725 | 97 | /* Exported macro ------------------------------------------------------------*/ |
Kojto | 122:f9eeca106725 | 98 | /** @defgroup WWDG_LL_Exported_Macros WWDG Exported Macros |
Kojto | 122:f9eeca106725 | 99 | * @{ |
Kojto | 122:f9eeca106725 | 100 | */ |
Kojto | 122:f9eeca106725 | 101 | /** @defgroup WWDG_LL_EM_WRITE_READ Common Write and read registers macros |
Kojto | 122:f9eeca106725 | 102 | * @{ |
Kojto | 122:f9eeca106725 | 103 | */ |
Kojto | 122:f9eeca106725 | 104 | /** |
Kojto | 122:f9eeca106725 | 105 | * @brief Write a value in WWDG register |
Kojto | 122:f9eeca106725 | 106 | * @param __INSTANCE__ WWDG Instance |
Kojto | 122:f9eeca106725 | 107 | * @param __REG__ Register to be written |
Kojto | 122:f9eeca106725 | 108 | * @param __VALUE__ Value to be written in the register |
Kojto | 122:f9eeca106725 | 109 | * @retval None |
Kojto | 122:f9eeca106725 | 110 | */ |
Kojto | 122:f9eeca106725 | 111 | #define LL_WWDG_WriteReg(__INSTANCE__, __REG__, __VALUE__) WRITE_REG(__INSTANCE__->__REG__, (__VALUE__)) |
Kojto | 122:f9eeca106725 | 112 | |
Kojto | 122:f9eeca106725 | 113 | /** |
Kojto | 122:f9eeca106725 | 114 | * @brief Read a value in WWDG register |
Kojto | 122:f9eeca106725 | 115 | * @param __INSTANCE__ WWDG Instance |
Kojto | 122:f9eeca106725 | 116 | * @param __REG__ Register to be read |
Kojto | 122:f9eeca106725 | 117 | * @retval Register value |
Kojto | 122:f9eeca106725 | 118 | */ |
Kojto | 122:f9eeca106725 | 119 | #define LL_WWDG_ReadReg(__INSTANCE__, __REG__) READ_REG(__INSTANCE__->__REG__) |
Kojto | 122:f9eeca106725 | 120 | /** |
Kojto | 122:f9eeca106725 | 121 | * @} |
Kojto | 122:f9eeca106725 | 122 | */ |
Kojto | 122:f9eeca106725 | 123 | |
Kojto | 122:f9eeca106725 | 124 | |
Kojto | 122:f9eeca106725 | 125 | /** |
Kojto | 122:f9eeca106725 | 126 | * @} |
Kojto | 122:f9eeca106725 | 127 | */ |
Kojto | 122:f9eeca106725 | 128 | |
Kojto | 122:f9eeca106725 | 129 | /* Exported functions --------------------------------------------------------*/ |
Kojto | 122:f9eeca106725 | 130 | /** @defgroup WWDG_LL_Exported_Functions WWDG Exported Functions |
Kojto | 122:f9eeca106725 | 131 | * @{ |
Kojto | 122:f9eeca106725 | 132 | */ |
Kojto | 122:f9eeca106725 | 133 | |
Kojto | 122:f9eeca106725 | 134 | /** @defgroup WWDG_LL_EF_Configuration Configuration |
Kojto | 122:f9eeca106725 | 135 | * @{ |
Kojto | 122:f9eeca106725 | 136 | */ |
Kojto | 122:f9eeca106725 | 137 | /** |
Kojto | 122:f9eeca106725 | 138 | * @brief Enable Window Watchdog. The watchdog is always disabled after a reset. |
Kojto | 122:f9eeca106725 | 139 | * @note It is enabled by setting the WDGA bit in the WWDG_CR register, |
Kojto | 122:f9eeca106725 | 140 | * then it cannot be disabled again except by a reset. |
Kojto | 122:f9eeca106725 | 141 | * This bit is set by software and only cleared by hardware after a reset. |
Kojto | 122:f9eeca106725 | 142 | * When WDGA = 1, the watchdog can generate a reset. |
Kojto | 122:f9eeca106725 | 143 | * @rmtoll CR WDGA LL_WWDG_Enable |
Kojto | 122:f9eeca106725 | 144 | * @param WWDGx WWDG Instance |
Kojto | 122:f9eeca106725 | 145 | * @retval None |
Kojto | 122:f9eeca106725 | 146 | */ |
Kojto | 122:f9eeca106725 | 147 | __STATIC_INLINE void LL_WWDG_Enable(WWDG_TypeDef *WWDGx) |
Kojto | 122:f9eeca106725 | 148 | { |
Kojto | 122:f9eeca106725 | 149 | SET_BIT(WWDGx->CR, WWDG_CR_WDGA); |
Kojto | 122:f9eeca106725 | 150 | } |
Kojto | 122:f9eeca106725 | 151 | |
Kojto | 122:f9eeca106725 | 152 | /** |
Kojto | 122:f9eeca106725 | 153 | * @brief Checks if Window Watchdog is enabled |
Kojto | 122:f9eeca106725 | 154 | * @rmtoll CR WDGA LL_WWDG_IsEnabled |
Kojto | 122:f9eeca106725 | 155 | * @param WWDGx WWDG Instance |
Kojto | 122:f9eeca106725 | 156 | * @retval State of bit (1 or 0). |
Kojto | 122:f9eeca106725 | 157 | */ |
Kojto | 122:f9eeca106725 | 158 | __STATIC_INLINE uint32_t LL_WWDG_IsEnabled(WWDG_TypeDef *WWDGx) |
Kojto | 122:f9eeca106725 | 159 | { |
Kojto | 122:f9eeca106725 | 160 | return (READ_BIT(WWDGx->CR, WWDG_CR_WDGA) == (WWDG_CR_WDGA)); |
Kojto | 122:f9eeca106725 | 161 | } |
Kojto | 122:f9eeca106725 | 162 | |
Kojto | 122:f9eeca106725 | 163 | /** |
Kojto | 122:f9eeca106725 | 164 | * @brief Set the Watchdog counter value to provided value (7-bits T[6:0]) |
Kojto | 122:f9eeca106725 | 165 | * @note When writing to the WWDG_CR register, always write 1 in the MSB b6 to avoid generating an immediate reset |
Kojto | 122:f9eeca106725 | 166 | * This counter is decremented every (4096 x 2expWDGTB) PCLK cycles |
Kojto | 122:f9eeca106725 | 167 | * A reset is produced when it rolls over from 0x40 to 0x3F (bit T6 becomes cleared) |
Kojto | 122:f9eeca106725 | 168 | * Setting the counter lower then 0x40 causes an immediate reset (if WWDG enabled) |
Kojto | 122:f9eeca106725 | 169 | * @rmtoll CR T LL_WWDG_SetCounter |
Kojto | 122:f9eeca106725 | 170 | * @param WWDGx WWDG Instance |
Kojto | 122:f9eeca106725 | 171 | * @param Counter 0..0x7F (7 bit counter value) |
Kojto | 122:f9eeca106725 | 172 | * @retval None |
Kojto | 122:f9eeca106725 | 173 | */ |
Kojto | 122:f9eeca106725 | 174 | __STATIC_INLINE void LL_WWDG_SetCounter(WWDG_TypeDef *WWDGx, uint32_t Counter) |
Kojto | 122:f9eeca106725 | 175 | { |
Kojto | 122:f9eeca106725 | 176 | MODIFY_REG(WWDGx->CR, WWDG_CR_T, Counter); |
Kojto | 122:f9eeca106725 | 177 | } |
Kojto | 122:f9eeca106725 | 178 | |
Kojto | 122:f9eeca106725 | 179 | /** |
Kojto | 122:f9eeca106725 | 180 | * @brief Return current Watchdog Counter Value (7 bits counter value) |
Kojto | 122:f9eeca106725 | 181 | * @rmtoll CR T LL_WWDG_GetCounter |
Kojto | 122:f9eeca106725 | 182 | * @param WWDGx WWDG Instance |
Kojto | 122:f9eeca106725 | 183 | * @retval 7 bit Watchdog Counter value |
Kojto | 122:f9eeca106725 | 184 | */ |
Kojto | 122:f9eeca106725 | 185 | __STATIC_INLINE uint32_t LL_WWDG_GetCounter(WWDG_TypeDef *WWDGx) |
Kojto | 122:f9eeca106725 | 186 | { |
Kojto | 122:f9eeca106725 | 187 | return (uint32_t)(READ_BIT(WWDGx->CR, WWDG_CR_T)); |
Kojto | 122:f9eeca106725 | 188 | } |
Kojto | 122:f9eeca106725 | 189 | |
Kojto | 122:f9eeca106725 | 190 | /** |
Kojto | 122:f9eeca106725 | 191 | * @brief Set the time base of the prescaler (WDGTB). |
Kojto | 122:f9eeca106725 | 192 | * @note Prescaler is used to apply ratio on PCLK clock, so that Watchdog counter |
Kojto | 122:f9eeca106725 | 193 | * is decremented every (4096 x 2expWDGTB) PCLK cycles |
Kojto | 122:f9eeca106725 | 194 | * @rmtoll CFR WDGTB LL_WWDG_SetPrescaler |
Kojto | 122:f9eeca106725 | 195 | * @param WWDGx WWDG Instance |
Kojto | 122:f9eeca106725 | 196 | * @param Prescaler This parameter can be one of the following values: |
Kojto | 122:f9eeca106725 | 197 | * @arg @ref LL_WWDG_PRESCALER_1 |
Kojto | 122:f9eeca106725 | 198 | * @arg @ref LL_WWDG_PRESCALER_2 |
Kojto | 122:f9eeca106725 | 199 | * @arg @ref LL_WWDG_PRESCALER_4 |
Kojto | 122:f9eeca106725 | 200 | * @arg @ref LL_WWDG_PRESCALER_8 |
Kojto | 122:f9eeca106725 | 201 | * @retval None |
Kojto | 122:f9eeca106725 | 202 | */ |
Kojto | 122:f9eeca106725 | 203 | __STATIC_INLINE void LL_WWDG_SetPrescaler(WWDG_TypeDef *WWDGx, uint32_t Prescaler) |
Kojto | 122:f9eeca106725 | 204 | { |
Kojto | 122:f9eeca106725 | 205 | MODIFY_REG(WWDGx->CFR, WWDG_CFR_WDGTB, Prescaler); |
Kojto | 122:f9eeca106725 | 206 | } |
Kojto | 122:f9eeca106725 | 207 | |
Kojto | 122:f9eeca106725 | 208 | /** |
Kojto | 122:f9eeca106725 | 209 | * @brief Return current Watchdog Prescaler Value |
Kojto | 122:f9eeca106725 | 210 | * @rmtoll CFR WDGTB LL_WWDG_GetPrescaler |
Kojto | 122:f9eeca106725 | 211 | * @param WWDGx WWDG Instance |
Kojto | 122:f9eeca106725 | 212 | * @retval Returned value can be one of the following values: |
Kojto | 122:f9eeca106725 | 213 | * @arg @ref LL_WWDG_PRESCALER_1 |
Kojto | 122:f9eeca106725 | 214 | * @arg @ref LL_WWDG_PRESCALER_2 |
Kojto | 122:f9eeca106725 | 215 | * @arg @ref LL_WWDG_PRESCALER_4 |
Kojto | 122:f9eeca106725 | 216 | * @arg @ref LL_WWDG_PRESCALER_8 |
Kojto | 122:f9eeca106725 | 217 | */ |
Kojto | 122:f9eeca106725 | 218 | __STATIC_INLINE uint32_t LL_WWDG_GetPrescaler(WWDG_TypeDef *WWDGx) |
Kojto | 122:f9eeca106725 | 219 | { |
Kojto | 122:f9eeca106725 | 220 | return (uint32_t)(READ_BIT(WWDGx->CFR, WWDG_CFR_WDGTB)); |
Kojto | 122:f9eeca106725 | 221 | } |
Kojto | 122:f9eeca106725 | 222 | |
Kojto | 122:f9eeca106725 | 223 | /** |
Kojto | 122:f9eeca106725 | 224 | * @brief Set the Watchdog Window value to be compared to the downcounter (7-bits W[6:0]). |
Kojto | 122:f9eeca106725 | 225 | * @note This window value defines when write in the WWDG_CR register |
Kojto | 122:f9eeca106725 | 226 | * to program Watchdog counter is allowed. |
Kojto | 122:f9eeca106725 | 227 | * Watchdog counter value update must occur only when the counter value |
Kojto | 122:f9eeca106725 | 228 | * is lower than the Watchdog window register value. |
Kojto | 122:f9eeca106725 | 229 | * Otherwise, a MCU reset is generated if the 7-bit Watchdog counter value |
Kojto | 122:f9eeca106725 | 230 | * (in the control register) is refreshed before the downcounter has reached |
Kojto | 122:f9eeca106725 | 231 | * the watchdog window register value. |
Kojto | 122:f9eeca106725 | 232 | * Physically is possible to set the Window lower then 0x40 but it is not recommended. |
Kojto | 122:f9eeca106725 | 233 | * To generate an immediate reset, it is possible to set the Counter lower than 0x40. |
Kojto | 122:f9eeca106725 | 234 | * @rmtoll CFR W LL_WWDG_SetWindow |
Kojto | 122:f9eeca106725 | 235 | * @param WWDGx WWDG Instance |
Kojto | 122:f9eeca106725 | 236 | * @param Window 0x00..0x7F (7 bit Window value) |
Kojto | 122:f9eeca106725 | 237 | * @retval None |
Kojto | 122:f9eeca106725 | 238 | */ |
Kojto | 122:f9eeca106725 | 239 | __STATIC_INLINE void LL_WWDG_SetWindow(WWDG_TypeDef *WWDGx, uint32_t Window) |
Kojto | 122:f9eeca106725 | 240 | { |
Kojto | 122:f9eeca106725 | 241 | MODIFY_REG(WWDGx->CFR, WWDG_CFR_W, Window); |
Kojto | 122:f9eeca106725 | 242 | } |
Kojto | 122:f9eeca106725 | 243 | |
Kojto | 122:f9eeca106725 | 244 | /** |
Kojto | 122:f9eeca106725 | 245 | * @brief Return current Watchdog Window Value (7 bits value) |
Kojto | 122:f9eeca106725 | 246 | * @rmtoll CFR W LL_WWDG_GetWindow |
Kojto | 122:f9eeca106725 | 247 | * @param WWDGx WWDG Instance |
Kojto | 122:f9eeca106725 | 248 | * @retval 7 bit Watchdog Window value |
Kojto | 122:f9eeca106725 | 249 | */ |
Kojto | 122:f9eeca106725 | 250 | __STATIC_INLINE uint32_t LL_WWDG_GetWindow(WWDG_TypeDef *WWDGx) |
Kojto | 122:f9eeca106725 | 251 | { |
Kojto | 122:f9eeca106725 | 252 | return (uint32_t)(READ_BIT(WWDGx->CFR, WWDG_CFR_W)); |
Kojto | 122:f9eeca106725 | 253 | } |
Kojto | 122:f9eeca106725 | 254 | |
Kojto | 122:f9eeca106725 | 255 | /** |
Kojto | 122:f9eeca106725 | 256 | * @} |
Kojto | 122:f9eeca106725 | 257 | */ |
Kojto | 122:f9eeca106725 | 258 | |
Kojto | 122:f9eeca106725 | 259 | /** @defgroup WWDG_LL_EF_FLAG_Management FLAG_Management |
Kojto | 122:f9eeca106725 | 260 | * @{ |
Kojto | 122:f9eeca106725 | 261 | */ |
Kojto | 122:f9eeca106725 | 262 | /** |
Kojto | 122:f9eeca106725 | 263 | * @brief Indicates if the WWDG Early Wakeup Interrupt Flag is set or not. |
Kojto | 122:f9eeca106725 | 264 | * @note This bit is set by hardware when the counter has reached the value 0x40. |
Kojto | 122:f9eeca106725 | 265 | * It must be cleared by software by writing 0. |
Kojto | 122:f9eeca106725 | 266 | * A write of 1 has no effect. This bit is also set if the interrupt is not enabled. |
Kojto | 122:f9eeca106725 | 267 | * @rmtoll SR EWIF LL_WWDG_IsActiveFlag_EWKUP |
Kojto | 122:f9eeca106725 | 268 | * @param WWDGx WWDG Instance |
Kojto | 122:f9eeca106725 | 269 | * @retval State of bit (1 or 0). |
Kojto | 122:f9eeca106725 | 270 | */ |
Kojto | 122:f9eeca106725 | 271 | __STATIC_INLINE uint32_t LL_WWDG_IsActiveFlag_EWKUP(WWDG_TypeDef *WWDGx) |
Kojto | 122:f9eeca106725 | 272 | { |
Kojto | 122:f9eeca106725 | 273 | return (READ_BIT(WWDGx->SR, WWDG_SR_EWIF) == (WWDG_SR_EWIF)); |
Kojto | 122:f9eeca106725 | 274 | } |
Kojto | 122:f9eeca106725 | 275 | |
Kojto | 122:f9eeca106725 | 276 | /** |
Kojto | 122:f9eeca106725 | 277 | * @brief Clear WWDG Early Wakeup Interrupt Flag (EWIF) |
Kojto | 122:f9eeca106725 | 278 | * @rmtoll SR EWIF LL_WWDG_ClearFlag_EWKUP |
Kojto | 122:f9eeca106725 | 279 | * @param WWDGx WWDG Instance |
Kojto | 122:f9eeca106725 | 280 | * @retval None |
Kojto | 122:f9eeca106725 | 281 | */ |
Kojto | 122:f9eeca106725 | 282 | __STATIC_INLINE void LL_WWDG_ClearFlag_EWKUP(WWDG_TypeDef *WWDGx) |
Kojto | 122:f9eeca106725 | 283 | { |
Kojto | 122:f9eeca106725 | 284 | WRITE_REG(WWDGx->SR, ~WWDG_SR_EWIF); |
Kojto | 122:f9eeca106725 | 285 | } |
Kojto | 122:f9eeca106725 | 286 | |
Kojto | 122:f9eeca106725 | 287 | /** |
Kojto | 122:f9eeca106725 | 288 | * @} |
Kojto | 122:f9eeca106725 | 289 | */ |
Kojto | 122:f9eeca106725 | 290 | |
Kojto | 122:f9eeca106725 | 291 | /** @defgroup WWDG_LL_EF_IT_Management IT_Management |
Kojto | 122:f9eeca106725 | 292 | * @{ |
Kojto | 122:f9eeca106725 | 293 | */ |
Kojto | 122:f9eeca106725 | 294 | /** |
Kojto | 122:f9eeca106725 | 295 | * @brief Enable the Early Wakeup Interrupt. |
Kojto | 122:f9eeca106725 | 296 | * @note When set, an interrupt occurs whenever the counter reaches value 0x40. |
Kojto | 122:f9eeca106725 | 297 | * This interrupt is only cleared by hardware after a reset |
Kojto | 122:f9eeca106725 | 298 | * @rmtoll CFR EWI LL_WWDG_EnableIT_EWKUP |
Kojto | 122:f9eeca106725 | 299 | * @param WWDGx WWDG Instance |
Kojto | 122:f9eeca106725 | 300 | * @retval None |
Kojto | 122:f9eeca106725 | 301 | */ |
Kojto | 122:f9eeca106725 | 302 | __STATIC_INLINE void LL_WWDG_EnableIT_EWKUP(WWDG_TypeDef *WWDGx) |
Kojto | 122:f9eeca106725 | 303 | { |
Kojto | 122:f9eeca106725 | 304 | SET_BIT(WWDGx->CFR, WWDG_CFR_EWI); |
Kojto | 122:f9eeca106725 | 305 | } |
Kojto | 122:f9eeca106725 | 306 | |
Kojto | 122:f9eeca106725 | 307 | /** |
Kojto | 122:f9eeca106725 | 308 | * @brief Check if Early Wakeup Interrupt is enabled |
Kojto | 122:f9eeca106725 | 309 | * @rmtoll CFR EWI LL_WWDG_IsEnabledIT_EWKUP |
Kojto | 122:f9eeca106725 | 310 | * @param WWDGx WWDG Instance |
Kojto | 122:f9eeca106725 | 311 | * @retval State of bit (1 or 0). |
Kojto | 122:f9eeca106725 | 312 | */ |
Kojto | 122:f9eeca106725 | 313 | __STATIC_INLINE uint32_t LL_WWDG_IsEnabledIT_EWKUP(WWDG_TypeDef *WWDGx) |
Kojto | 122:f9eeca106725 | 314 | { |
Kojto | 122:f9eeca106725 | 315 | return (READ_BIT(WWDGx->CFR, WWDG_CFR_EWI) == (WWDG_CFR_EWI)); |
Kojto | 122:f9eeca106725 | 316 | } |
Kojto | 122:f9eeca106725 | 317 | |
Kojto | 122:f9eeca106725 | 318 | /** |
Kojto | 122:f9eeca106725 | 319 | * @} |
Kojto | 122:f9eeca106725 | 320 | */ |
Kojto | 122:f9eeca106725 | 321 | |
Kojto | 122:f9eeca106725 | 322 | /** |
Kojto | 122:f9eeca106725 | 323 | * @} |
Kojto | 122:f9eeca106725 | 324 | */ |
Kojto | 122:f9eeca106725 | 325 | |
Kojto | 122:f9eeca106725 | 326 | /** |
Kojto | 122:f9eeca106725 | 327 | * @} |
Kojto | 122:f9eeca106725 | 328 | */ |
Kojto | 122:f9eeca106725 | 329 | |
Kojto | 122:f9eeca106725 | 330 | #endif /* WWDG */ |
Kojto | 122:f9eeca106725 | 331 | |
Kojto | 122:f9eeca106725 | 332 | /** |
Kojto | 122:f9eeca106725 | 333 | * @} |
Kojto | 122:f9eeca106725 | 334 | */ |
Kojto | 122:f9eeca106725 | 335 | |
Kojto | 122:f9eeca106725 | 336 | #ifdef __cplusplus |
Kojto | 122:f9eeca106725 | 337 | } |
Kojto | 122:f9eeca106725 | 338 | #endif |
Kojto | 122:f9eeca106725 | 339 | |
Kojto | 122:f9eeca106725 | 340 | #endif /* __STM32L4xx_LL_WWDG_H */ |
Kojto | 122:f9eeca106725 | 341 | |
Kojto | 122:f9eeca106725 | 342 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ |