The official mbed C/C SDK provides the software platform and libraries to build your applications.

Fork of mbed by mbed official

Committer:
Mikchel
Date:
Sun May 03 16:04:42 2015 +0000
Revision:
99:7f6c6de930c0
Parent:
93:e188a91d3eaa
12

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 90:cb3d968589d8 1 /**
Kojto 90:cb3d968589d8 2 ******************************************************************************
Kojto 90:cb3d968589d8 3 * @file stm32f0xx_hal_rtc_ex.h
Kojto 90:cb3d968589d8 4 * @author MCD Application Team
Kojto 93:e188a91d3eaa 5 * @version V1.2.0
Kojto 93:e188a91d3eaa 6 * @date 11-December-2014
Kojto 90:cb3d968589d8 7 * @brief Header file of RTC HAL Extension module.
Kojto 90:cb3d968589d8 8 ******************************************************************************
Kojto 90:cb3d968589d8 9 * @attention
Kojto 90:cb3d968589d8 10 *
Kojto 90:cb3d968589d8 11 * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
Kojto 90:cb3d968589d8 12 *
Kojto 90:cb3d968589d8 13 * Redistribution and use in source and binary forms, with or without modification,
Kojto 90:cb3d968589d8 14 * are permitted provided that the following conditions are met:
Kojto 90:cb3d968589d8 15 * 1. Redistributions of source code must retain the above copyright notice,
Kojto 90:cb3d968589d8 16 * this list of conditions and the following disclaimer.
Kojto 90:cb3d968589d8 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
Kojto 90:cb3d968589d8 18 * this list of conditions and the following disclaimer in the documentation
Kojto 90:cb3d968589d8 19 * and/or other materials provided with the distribution.
Kojto 90:cb3d968589d8 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Kojto 90:cb3d968589d8 21 * may be used to endorse or promote products derived from this software
Kojto 90:cb3d968589d8 22 * without specific prior written permission.
Kojto 90:cb3d968589d8 23 *
Kojto 90:cb3d968589d8 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Kojto 90:cb3d968589d8 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Kojto 90:cb3d968589d8 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Kojto 90:cb3d968589d8 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Kojto 90:cb3d968589d8 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Kojto 90:cb3d968589d8 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Kojto 90:cb3d968589d8 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Kojto 90:cb3d968589d8 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Kojto 90:cb3d968589d8 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Kojto 90:cb3d968589d8 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Kojto 90:cb3d968589d8 34 *
Kojto 90:cb3d968589d8 35 ******************************************************************************
Kojto 90:cb3d968589d8 36 */
Kojto 90:cb3d968589d8 37
Kojto 90:cb3d968589d8 38 /* Define to prevent recursive inclusion -------------------------------------*/
Kojto 90:cb3d968589d8 39 #ifndef __STM32F0xx_HAL_RTC_EX_H
Kojto 90:cb3d968589d8 40 #define __STM32F0xx_HAL_RTC_EX_H
Kojto 90:cb3d968589d8 41
Kojto 90:cb3d968589d8 42 #ifdef __cplusplus
Kojto 90:cb3d968589d8 43 extern "C" {
Kojto 90:cb3d968589d8 44 #endif
Kojto 90:cb3d968589d8 45
Kojto 90:cb3d968589d8 46 /* Includes ------------------------------------------------------------------*/
Kojto 90:cb3d968589d8 47 #include "stm32f0xx_hal_def.h"
Kojto 90:cb3d968589d8 48
Kojto 90:cb3d968589d8 49 /** @addtogroup STM32F0xx_HAL_Driver
Kojto 90:cb3d968589d8 50 * @{
Kojto 90:cb3d968589d8 51 */
Kojto 90:cb3d968589d8 52
Kojto 90:cb3d968589d8 53 /** @addtogroup RTCEx
Kojto 90:cb3d968589d8 54 * @{
Kojto 90:cb3d968589d8 55 */
Kojto 90:cb3d968589d8 56
Kojto 90:cb3d968589d8 57 /* Exported types ------------------------------------------------------------*/
Kojto 90:cb3d968589d8 58
Kojto 90:cb3d968589d8 59 /** @defgroup RTCEx_Exported_Types RTCEx Exported Types
Kojto 90:cb3d968589d8 60 * @{
Kojto 90:cb3d968589d8 61 */
Kojto 90:cb3d968589d8 62
Kojto 90:cb3d968589d8 63 /**
Kojto 90:cb3d968589d8 64 * @brief RTC Tamper structure definition
Kojto 90:cb3d968589d8 65 */
Kojto 90:cb3d968589d8 66 typedef struct
Kojto 90:cb3d968589d8 67 {
Kojto 90:cb3d968589d8 68 uint32_t Tamper; /*!< Specifies the Tamper Pin.
Kojto 90:cb3d968589d8 69 This parameter can be a value of @ref RTCEx_Tamper_Pins_Definitions */
Kojto 90:cb3d968589d8 70
Kojto 90:cb3d968589d8 71 uint32_t Trigger; /*!< Specifies the Tamper Trigger.
Kojto 90:cb3d968589d8 72 This parameter can be a value of @ref RTCEx_Tamper_Trigger_Definitions */
Kojto 90:cb3d968589d8 73
Kojto 90:cb3d968589d8 74 uint32_t Filter; /*!< Specifies the RTC Filter Tamper.
Kojto 90:cb3d968589d8 75 This parameter can be a value of @ref RTCEx_Tamper_Filter_Definitions */
Kojto 90:cb3d968589d8 76
Kojto 90:cb3d968589d8 77 uint32_t SamplingFrequency; /*!< Specifies the sampling frequency.
Kojto 90:cb3d968589d8 78 This parameter can be a value of @ref RTCEx_Tamper_Sampling_Frequencies_Definitions */
Kojto 90:cb3d968589d8 79
Kojto 90:cb3d968589d8 80 uint32_t PrechargeDuration; /*!< Specifies the Precharge Duration .
Kojto 90:cb3d968589d8 81 This parameter can be a value of @ref RTCEx_Tamper_Pin_Precharge_Duration_Definitions */
Kojto 90:cb3d968589d8 82
Kojto 90:cb3d968589d8 83 uint32_t TamperPullUp; /*!< Specifies the Tamper PullUp .
Kojto 90:cb3d968589d8 84 This parameter can be a value of @ref RTCEx_Tamper_Pull_UP_Definitions */
Kojto 90:cb3d968589d8 85
Kojto 90:cb3d968589d8 86 uint32_t TimeStampOnTamperDetection; /*!< Specifies the TimeStampOnTamperDetection.
Kojto 90:cb3d968589d8 87 This parameter can be a value of @ref RTCEx_Tamper_TimeStampOnTamperDetection_Definitions */
Kojto 90:cb3d968589d8 88 }RTC_TamperTypeDef;
Kojto 90:cb3d968589d8 89 /**
Kojto 90:cb3d968589d8 90 * @}
Kojto 90:cb3d968589d8 91 */
Kojto 90:cb3d968589d8 92
Kojto 90:cb3d968589d8 93 /* Exported constants --------------------------------------------------------*/
Kojto 90:cb3d968589d8 94 /** @defgroup RTCEx_Exported_Constants RTCEx Exported Constants
Kojto 90:cb3d968589d8 95 * @{
Kojto 90:cb3d968589d8 96 */
Kojto 90:cb3d968589d8 97
Kojto 90:cb3d968589d8 98 /** @defgroup RTCEx_Output_selection_Definitions RTCEx Output Selection Definition
Kojto 90:cb3d968589d8 99 * @{
Kojto 90:cb3d968589d8 100 */
Kojto 90:cb3d968589d8 101 #define RTC_OUTPUT_DISABLE ((uint32_t)0x00000000)
Kojto 90:cb3d968589d8 102 #define RTC_OUTPUT_ALARMA ((uint32_t)0x00200000)
Kojto 90:cb3d968589d8 103 #if defined(STM32F071xB) || defined(STM32F072xB) || defined(STM32F078xx) || defined(STM32F091xC) || defined(STM32F098xx)
Kojto 90:cb3d968589d8 104 #define RTC_OUTPUT_WAKEUP ((uint32_t)0x00600000)
Kojto 90:cb3d968589d8 105 #endif
Kojto 90:cb3d968589d8 106
Kojto 90:cb3d968589d8 107 #if defined(STM32F071xB) || defined(STM32F072xB) || defined(STM32F078xx) || defined(STM32F091xC) || defined(STM32F098xx)
Kojto 90:cb3d968589d8 108 #define IS_RTC_OUTPUT(OUTPUT) (((OUTPUT) == RTC_OUTPUT_DISABLE) || \
Kojto 90:cb3d968589d8 109 ((OUTPUT) == RTC_OUTPUT_ALARMA) || \
Kojto 90:cb3d968589d8 110 ((OUTPUT) == RTC_OUTPUT_WAKEUP))
Kojto 90:cb3d968589d8 111 #else
Kojto 90:cb3d968589d8 112 #define IS_RTC_OUTPUT(OUTPUT) (((OUTPUT) == RTC_OUTPUT_DISABLE) || \
Kojto 90:cb3d968589d8 113 ((OUTPUT) == RTC_OUTPUT_ALARMA))
Kojto 90:cb3d968589d8 114 #endif
Kojto 90:cb3d968589d8 115 /**
Kojto 90:cb3d968589d8 116 * @}
Kojto 90:cb3d968589d8 117 */
Kojto 90:cb3d968589d8 118
Kojto 93:e188a91d3eaa 119 #if !defined(STM32F030x6) && !defined(STM32F030x8) && !defined(STM32F030xC) && !defined(STM32F070x6) && !defined(STM32F070xB)
Kojto 90:cb3d968589d8 120 /** @defgroup RTCEx_Backup_Registers_Definitions RTCEx Backup Registers Definition
Kojto 90:cb3d968589d8 121 * @{
Kojto 90:cb3d968589d8 122 */
Kojto 90:cb3d968589d8 123 #define RTC_BKP_DR0 ((uint32_t)0x00000000)
Kojto 90:cb3d968589d8 124 #define RTC_BKP_DR1 ((uint32_t)0x00000001)
Kojto 90:cb3d968589d8 125 #define RTC_BKP_DR2 ((uint32_t)0x00000002)
Kojto 90:cb3d968589d8 126 #define RTC_BKP_DR3 ((uint32_t)0x00000003)
Kojto 90:cb3d968589d8 127 #define RTC_BKP_DR4 ((uint32_t)0x00000004)
Kojto 90:cb3d968589d8 128
Kojto 90:cb3d968589d8 129 #define IS_RTC_BKP(BKP) ((BKP) < (uint32_t) RTC_BKP_NUMBER)
Kojto 90:cb3d968589d8 130 /**
Kojto 90:cb3d968589d8 131 * @}
Kojto 90:cb3d968589d8 132 */
Kojto 93:e188a91d3eaa 133 #endif /* !defined(STM32F030x6) && !defined(STM32F030x8) && !defined(STM32F030xC) && !defined(STM32F070x6) && !defined(STM32F070xB) */
Kojto 90:cb3d968589d8 134
Kojto 90:cb3d968589d8 135 /** @defgroup RTCEx_Time_Stamp_Edges_definitions RTCEx Time Stamp Edges definition
Kojto 90:cb3d968589d8 136 * @{
Kojto 90:cb3d968589d8 137 */
Kojto 90:cb3d968589d8 138 #define RTC_TIMESTAMPEDGE_RISING ((uint32_t)0x00000000)
Kojto 90:cb3d968589d8 139 #define RTC_TIMESTAMPEDGE_FALLING ((uint32_t)0x00000008)
Kojto 90:cb3d968589d8 140
Kojto 90:cb3d968589d8 141 #define IS_TIMESTAMP_EDGE(EDGE) (((EDGE) == RTC_TIMESTAMPEDGE_RISING) || \
Kojto 90:cb3d968589d8 142 ((EDGE) == RTC_TIMESTAMPEDGE_FALLING))
Kojto 90:cb3d968589d8 143 /**
Kojto 90:cb3d968589d8 144 * @}
Kojto 90:cb3d968589d8 145 */
Kojto 90:cb3d968589d8 146
Kojto 90:cb3d968589d8 147 /** @defgroup RTCEx_Tamper_Pins_Definitions RTCEx Tamper Pins Definition
Kojto 90:cb3d968589d8 148 * @{
Kojto 90:cb3d968589d8 149 */
Kojto 90:cb3d968589d8 150 #define RTC_TAMPER_1 RTC_TAFCR_TAMP1E
Kojto 90:cb3d968589d8 151 #define RTC_TAMPER_2 RTC_TAFCR_TAMP2E
Kojto 90:cb3d968589d8 152 #if defined(STM32F071xB) || defined(STM32F072xB) || defined(STM32F078xx) || defined(STM32F091xC) || defined(STM32F098xx)
Kojto 90:cb3d968589d8 153 #define RTC_TAMPER_3 RTC_TAFCR_TAMP3E
Kojto 90:cb3d968589d8 154 #endif
Kojto 90:cb3d968589d8 155
Kojto 90:cb3d968589d8 156 #if defined(STM32F071xB) || defined(STM32F072xB) || defined(STM32F078xx) || defined(STM32F091xC) || defined(STM32F098xx)
Kojto 90:cb3d968589d8 157 #define IS_TAMPER(TAMPER) (((TAMPER) == RTC_TAMPER_1) || \
Kojto 90:cb3d968589d8 158 ((TAMPER) == RTC_TAMPER_2) || \
Kojto 90:cb3d968589d8 159 ((TAMPER) == RTC_TAMPER_3))
Kojto 90:cb3d968589d8 160 #else
Kojto 90:cb3d968589d8 161 #define IS_TAMPER(TAMPER) (((TAMPER) == RTC_TAMPER_1) || \
Kojto 90:cb3d968589d8 162 ((TAMPER) == RTC_TAMPER_2))
Kojto 90:cb3d968589d8 163 #endif
Kojto 90:cb3d968589d8 164 /**
Kojto 90:cb3d968589d8 165 * @}
Kojto 90:cb3d968589d8 166 */
Kojto 90:cb3d968589d8 167
Kojto 90:cb3d968589d8 168 /** @defgroup RTCEx_TimeStamp_Pin_Selections RTCEx TimeStamp Pin Selection
Kojto 90:cb3d968589d8 169 * @{
Kojto 90:cb3d968589d8 170 */
Kojto 90:cb3d968589d8 171 #define RTC_TIMESTAMPPIN_PC13 ((uint32_t)0x00000000)
Kojto 90:cb3d968589d8 172
Kojto 90:cb3d968589d8 173 #define IS_RTC_TIMESTAMP_PIN(PIN) (((PIN) == RTC_TIMESTAMPPIN_PC13))
Kojto 90:cb3d968589d8 174 /**
Kojto 90:cb3d968589d8 175 * @}
Kojto 90:cb3d968589d8 176 */
Kojto 90:cb3d968589d8 177
Kojto 90:cb3d968589d8 178 /** @defgroup RTCEx_Tamper_Trigger_Definitions RTCEx Tamper Trigger Definition
Kojto 90:cb3d968589d8 179 * @{
Kojto 90:cb3d968589d8 180 */
Kojto 90:cb3d968589d8 181 #define RTC_TAMPERTRIGGER_RISINGEDGE ((uint32_t)0x00000000)
Kojto 90:cb3d968589d8 182 #define RTC_TAMPERTRIGGER_FALLINGEDGE ((uint32_t)0x00000002)
Kojto 90:cb3d968589d8 183 #define RTC_TAMPERTRIGGER_LOWLEVEL RTC_TAMPERTRIGGER_RISINGEDGE
Kojto 90:cb3d968589d8 184 #define RTC_TAMPERTRIGGER_HIGHLEVEL RTC_TAMPERTRIGGER_FALLINGEDGE
Kojto 90:cb3d968589d8 185
Kojto 90:cb3d968589d8 186 #define IS_TAMPER_TRIGGER(TRIGGER) (((TRIGGER) == RTC_TAMPERTRIGGER_RISINGEDGE) || \
Kojto 90:cb3d968589d8 187 ((TRIGGER) == RTC_TAMPERTRIGGER_FALLINGEDGE) || \
Kojto 90:cb3d968589d8 188 ((TRIGGER) == RTC_TAMPERTRIGGER_LOWLEVEL) || \
Kojto 90:cb3d968589d8 189 ((TRIGGER) == RTC_TAMPERTRIGGER_HIGHLEVEL))
Kojto 90:cb3d968589d8 190
Kojto 90:cb3d968589d8 191 /**
Kojto 90:cb3d968589d8 192 * @}
Kojto 90:cb3d968589d8 193 */
Kojto 90:cb3d968589d8 194
Kojto 90:cb3d968589d8 195 /** @defgroup RTCEx_Tamper_Filter_Definitions RTCEx Tamper Filter Definition
Kojto 90:cb3d968589d8 196 * @{
Kojto 90:cb3d968589d8 197 */
Kojto 90:cb3d968589d8 198 #define RTC_TAMPERFILTER_DISABLE ((uint32_t)0x00000000) /*!< Tamper filter is disabled */
Kojto 90:cb3d968589d8 199
Kojto 90:cb3d968589d8 200 #define RTC_TAMPERFILTER_2SAMPLE ((uint32_t)0x00000800) /*!< Tamper is activated after 2
Kojto 90:cb3d968589d8 201 consecutive samples at the active level */
Kojto 90:cb3d968589d8 202 #define RTC_TAMPERFILTER_4SAMPLE ((uint32_t)0x00001000) /*!< Tamper is activated after 4
Kojto 90:cb3d968589d8 203 consecutive samples at the active level */
Kojto 90:cb3d968589d8 204 #define RTC_TAMPERFILTER_8SAMPLE ((uint32_t)0x00001800) /*!< Tamper is activated after 8
Kojto 90:cb3d968589d8 205 consecutive samples at the active level. */
Kojto 90:cb3d968589d8 206
Kojto 90:cb3d968589d8 207 #define IS_TAMPER_FILTER(FILTER) (((FILTER) == RTC_TAMPERFILTER_DISABLE) || \
Kojto 90:cb3d968589d8 208 ((FILTER) == RTC_TAMPERFILTER_2SAMPLE) || \
Kojto 90:cb3d968589d8 209 ((FILTER) == RTC_TAMPERFILTER_4SAMPLE) || \
Kojto 90:cb3d968589d8 210 ((FILTER) == RTC_TAMPERFILTER_8SAMPLE))
Kojto 90:cb3d968589d8 211 /**
Kojto 90:cb3d968589d8 212 * @}
Kojto 90:cb3d968589d8 213 */
Kojto 90:cb3d968589d8 214
Kojto 90:cb3d968589d8 215 /** @defgroup RTCEx_Tamper_Sampling_Frequencies_Definitions RTCEx Tamper Sampling Frequencies Definition
Kojto 90:cb3d968589d8 216 * @{
Kojto 90:cb3d968589d8 217 */
Kojto 90:cb3d968589d8 218 #define RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV32768 ((uint32_t)0x00000000) /*!< Each of the tamper inputs are sampled
Kojto 90:cb3d968589d8 219 with a frequency = RTCCLK / 32768 */
Kojto 90:cb3d968589d8 220 #define RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV16384 ((uint32_t)0x00000100) /*!< Each of the tamper inputs are sampled
Kojto 90:cb3d968589d8 221 with a frequency = RTCCLK / 16384 */
Kojto 90:cb3d968589d8 222 #define RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV8192 ((uint32_t)0x00000200) /*!< Each of the tamper inputs are sampled
Kojto 90:cb3d968589d8 223 with a frequency = RTCCLK / 8192 */
Kojto 90:cb3d968589d8 224 #define RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV4096 ((uint32_t)0x00000300) /*!< Each of the tamper inputs are sampled
Kojto 90:cb3d968589d8 225 with a frequency = RTCCLK / 4096 */
Kojto 90:cb3d968589d8 226 #define RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV2048 ((uint32_t)0x00000400) /*!< Each of the tamper inputs are sampled
Kojto 90:cb3d968589d8 227 with a frequency = RTCCLK / 2048 */
Kojto 90:cb3d968589d8 228 #define RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV1024 ((uint32_t)0x00000500) /*!< Each of the tamper inputs are sampled
Kojto 90:cb3d968589d8 229 with a frequency = RTCCLK / 1024 */
Kojto 90:cb3d968589d8 230 #define RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV512 ((uint32_t)0x00000600) /*!< Each of the tamper inputs are sampled
Kojto 90:cb3d968589d8 231 with a frequency = RTCCLK / 512 */
Kojto 90:cb3d968589d8 232 #define RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV256 ((uint32_t)0x00000700) /*!< Each of the tamper inputs are sampled
Kojto 90:cb3d968589d8 233 with a frequency = RTCCLK / 256 */
Kojto 90:cb3d968589d8 234
Kojto 90:cb3d968589d8 235 #define IS_TAMPER_SAMPLING_FREQ(FREQ) (((FREQ) == RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV32768)|| \
Kojto 90:cb3d968589d8 236 ((FREQ) == RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV16384)|| \
Kojto 90:cb3d968589d8 237 ((FREQ) == RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV8192) || \
Kojto 90:cb3d968589d8 238 ((FREQ) == RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV4096) || \
Kojto 90:cb3d968589d8 239 ((FREQ) == RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV2048) || \
Kojto 90:cb3d968589d8 240 ((FREQ) == RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV1024) || \
Kojto 90:cb3d968589d8 241 ((FREQ) == RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV512) || \
Kojto 90:cb3d968589d8 242 ((FREQ) == RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV256))
Kojto 90:cb3d968589d8 243 /**
Kojto 90:cb3d968589d8 244 * @}
Kojto 90:cb3d968589d8 245 */
Kojto 90:cb3d968589d8 246
Kojto 90:cb3d968589d8 247 /** @defgroup RTCEx_Tamper_Pin_Precharge_Duration_Definitions RTCEx Tamper Pin Precharge Duration Definition
Kojto 90:cb3d968589d8 248 * @{
Kojto 90:cb3d968589d8 249 */
Kojto 90:cb3d968589d8 250 #define RTC_TAMPERPRECHARGEDURATION_1RTCCLK ((uint32_t)0x00000000) /*!< Tamper pins are pre-charged before
Kojto 90:cb3d968589d8 251 sampling during 1 RTCCLK cycle */
Kojto 90:cb3d968589d8 252 #define RTC_TAMPERPRECHARGEDURATION_2RTCCLK ((uint32_t)0x00002000) /*!< Tamper pins are pre-charged before
Kojto 90:cb3d968589d8 253 sampling during 2 RTCCLK cycles */
Kojto 90:cb3d968589d8 254 #define RTC_TAMPERPRECHARGEDURATION_4RTCCLK ((uint32_t)0x00004000) /*!< Tamper pins are pre-charged before
Kojto 90:cb3d968589d8 255 sampling during 4 RTCCLK cycles */
Kojto 90:cb3d968589d8 256 #define RTC_TAMPERPRECHARGEDURATION_8RTCCLK ((uint32_t)0x00006000) /*!< Tamper pins are pre-charged before
Kojto 90:cb3d968589d8 257 sampling during 8 RTCCLK cycles */
Kojto 90:cb3d968589d8 258
Kojto 90:cb3d968589d8 259 #define IS_TAMPER_PRECHARGE_DURATION(DURATION) (((DURATION) == RTC_TAMPERPRECHARGEDURATION_1RTCCLK) || \
Kojto 90:cb3d968589d8 260 ((DURATION) == RTC_TAMPERPRECHARGEDURATION_2RTCCLK) || \
Kojto 90:cb3d968589d8 261 ((DURATION) == RTC_TAMPERPRECHARGEDURATION_4RTCCLK) || \
Kojto 90:cb3d968589d8 262 ((DURATION) == RTC_TAMPERPRECHARGEDURATION_8RTCCLK))
Kojto 90:cb3d968589d8 263 /**
Kojto 90:cb3d968589d8 264 * @}
Kojto 90:cb3d968589d8 265 */
Kojto 90:cb3d968589d8 266
Kojto 90:cb3d968589d8 267 /** @defgroup RTCEx_Tamper_TimeStampOnTamperDetection_Definitions RTCEx Tamper TimeStampOnTamperDetection Definition
Kojto 90:cb3d968589d8 268 * @{
Kojto 90:cb3d968589d8 269 */
Kojto 90:cb3d968589d8 270 #define RTC_TIMESTAMPONTAMPERDETECTION_ENABLE ((uint32_t)RTC_TAFCR_TAMPTS) /*!< TimeStamp on Tamper Detection event saved */
Kojto 90:cb3d968589d8 271 #define RTC_TIMESTAMPONTAMPERDETECTION_DISABLE ((uint32_t)0x00000000) /*!< TimeStamp on Tamper Detection event is not saved */
Kojto 90:cb3d968589d8 272
Kojto 90:cb3d968589d8 273 #define IS_TAMPER_TIMESTAMPONTAMPER_DETECTION(DETECTION) (((DETECTION) == RTC_TIMESTAMPONTAMPERDETECTION_ENABLE) || \
Kojto 90:cb3d968589d8 274 ((DETECTION) == RTC_TIMESTAMPONTAMPERDETECTION_DISABLE))
Kojto 90:cb3d968589d8 275 /**
Kojto 90:cb3d968589d8 276 * @}
Kojto 90:cb3d968589d8 277 */
Kojto 90:cb3d968589d8 278
Kojto 90:cb3d968589d8 279 /** @defgroup RTCEx_Tamper_Pull_UP_Definitions RTCEx Tamper Pull UP Definition
Kojto 90:cb3d968589d8 280 * @{
Kojto 90:cb3d968589d8 281 */
Kojto 90:cb3d968589d8 282 #define RTC_TAMPER_PULLUP_ENABLE ((uint32_t)0x00000000) /*!< TimeStamp on Tamper Detection event saved */
Kojto 90:cb3d968589d8 283 #define RTC_TAMPER_PULLUP_DISABLE ((uint32_t)RTC_TAFCR_TAMPPUDIS) /*!< TimeStamp on Tamper Detection event is not saved */
Kojto 90:cb3d968589d8 284
Kojto 90:cb3d968589d8 285 #define IS_TAMPER_PULLUP_STATE(STATE) (((STATE) == RTC_TAMPER_PULLUP_ENABLE) || \
Kojto 90:cb3d968589d8 286 ((STATE) == RTC_TAMPER_PULLUP_DISABLE))
Kojto 90:cb3d968589d8 287 /**
Kojto 90:cb3d968589d8 288 * @}
Kojto 90:cb3d968589d8 289 */
Kojto 90:cb3d968589d8 290
Kojto 93:e188a91d3eaa 291 #if defined(STM32F071xB) || defined(STM32F072xB) || defined(STM32F078xx) || defined(STM32F091xC) || defined(STM32F098xx) || defined(STM32F070xB) || defined(STM32F030xC)
Kojto 90:cb3d968589d8 292 /** @defgroup RTCEx_Wakeup_Timer_Definitions RTCEx Wakeup Timer Definition
Kojto 90:cb3d968589d8 293 * @{
Kojto 90:cb3d968589d8 294 */
Kojto 90:cb3d968589d8 295 #define RTC_WAKEUPCLOCK_RTCCLK_DIV16 ((uint32_t)0x00000000)
Kojto 90:cb3d968589d8 296 #define RTC_WAKEUPCLOCK_RTCCLK_DIV8 ((uint32_t)0x00000001)
Kojto 90:cb3d968589d8 297 #define RTC_WAKEUPCLOCK_RTCCLK_DIV4 ((uint32_t)0x00000002)
Kojto 90:cb3d968589d8 298 #define RTC_WAKEUPCLOCK_RTCCLK_DIV2 ((uint32_t)0x00000003)
Kojto 90:cb3d968589d8 299 #define RTC_WAKEUPCLOCK_CK_SPRE_16BITS ((uint32_t)0x00000004)
Kojto 90:cb3d968589d8 300 #define RTC_WAKEUPCLOCK_CK_SPRE_17BITS ((uint32_t)0x00000006)
Kojto 90:cb3d968589d8 301
Kojto 90:cb3d968589d8 302 #define IS_WAKEUP_CLOCK(CLOCK) (((CLOCK) == RTC_WAKEUPCLOCK_RTCCLK_DIV16) || \
Kojto 90:cb3d968589d8 303 ((CLOCK) == RTC_WAKEUPCLOCK_RTCCLK_DIV8) || \
Kojto 90:cb3d968589d8 304 ((CLOCK) == RTC_WAKEUPCLOCK_RTCCLK_DIV4) || \
Kojto 90:cb3d968589d8 305 ((CLOCK) == RTC_WAKEUPCLOCK_RTCCLK_DIV2) || \
Kojto 90:cb3d968589d8 306 ((CLOCK) == RTC_WAKEUPCLOCK_CK_SPRE_16BITS) || \
Kojto 90:cb3d968589d8 307 ((CLOCK) == RTC_WAKEUPCLOCK_CK_SPRE_17BITS))
Kojto 90:cb3d968589d8 308
Kojto 90:cb3d968589d8 309 #define IS_WAKEUP_COUNTER(COUNTER) ((COUNTER) <= 0xFFFF)
Kojto 90:cb3d968589d8 310 /**
Kojto 90:cb3d968589d8 311 * @}
Kojto 90:cb3d968589d8 312 */
Kojto 93:e188a91d3eaa 313 #endif /* defined(STM32F071xB) || defined(STM32F072xB) || defined(STM32F078xx) || defined(STM32F091xC) || defined(STM32F098xx) || defined(STM32F070xB) || defined(STM32F030xC) */
Kojto 90:cb3d968589d8 314
Kojto 90:cb3d968589d8 315 /** @defgroup RTCEx_Smooth_calib_period_Definitions RTCEx Smooth calib period Definition
Kojto 90:cb3d968589d8 316 * @{
Kojto 90:cb3d968589d8 317 */
Kojto 90:cb3d968589d8 318 #define RTC_SMOOTHCALIB_PERIOD_32SEC ((uint32_t)0x00000000) /*!< If RTCCLK = 32768 Hz, Smooth calibation
Kojto 90:cb3d968589d8 319 period is 32s, else 2exp20 RTCCLK seconds */
Kojto 90:cb3d968589d8 320 #define RTC_SMOOTHCALIB_PERIOD_16SEC ((uint32_t)0x00002000) /*!< If RTCCLK = 32768 Hz, Smooth calibation
Kojto 90:cb3d968589d8 321 period is 16s, else 2exp19 RTCCLK seconds */
Kojto 90:cb3d968589d8 322 #define RTC_SMOOTHCALIB_PERIOD_8SEC ((uint32_t)0x00004000) /*!< If RTCCLK = 32768 Hz, Smooth calibation
Kojto 90:cb3d968589d8 323 period is 8s, else 2exp18 RTCCLK seconds */
Kojto 90:cb3d968589d8 324
Kojto 90:cb3d968589d8 325 #define IS_RTC_SMOOTH_CALIB_PERIOD(PERIOD) (((PERIOD) == RTC_SMOOTHCALIB_PERIOD_32SEC) || \
Kojto 90:cb3d968589d8 326 ((PERIOD) == RTC_SMOOTHCALIB_PERIOD_16SEC) || \
Kojto 90:cb3d968589d8 327 ((PERIOD) == RTC_SMOOTHCALIB_PERIOD_8SEC))
Kojto 90:cb3d968589d8 328 /**
Kojto 90:cb3d968589d8 329 * @}
Kojto 90:cb3d968589d8 330 */
Kojto 90:cb3d968589d8 331
Kojto 90:cb3d968589d8 332 /** @defgroup RTCEx_Smooth_calib_Plus_pulses_Definitions RTCEx Smooth calib Plus pulses Definition
Kojto 90:cb3d968589d8 333 * @{
Kojto 90:cb3d968589d8 334 */
Kojto 90:cb3d968589d8 335 #define RTC_SMOOTHCALIB_PLUSPULSES_SET ((uint32_t)0x00008000) /*!< The number of RTCCLK pulses added
Kojto 90:cb3d968589d8 336 during a X -second window = Y - CALM[8:0]
Kojto 90:cb3d968589d8 337 with Y = 512, 256, 128 when X = 32, 16, 8 */
Kojto 90:cb3d968589d8 338 #define RTC_SMOOTHCALIB_PLUSPULSES_RESET ((uint32_t)0x00000000) /*!< The number of RTCCLK pulses subbstited
Kojto 90:cb3d968589d8 339 during a 32-second window = CALM[8:0] */
Kojto 90:cb3d968589d8 340
Kojto 90:cb3d968589d8 341 #define IS_RTC_SMOOTH_CALIB_PLUS(PLUS) (((PLUS) == RTC_SMOOTHCALIB_PLUSPULSES_SET) || \
Kojto 90:cb3d968589d8 342 ((PLUS) == RTC_SMOOTHCALIB_PLUSPULSES_RESET))
Kojto 90:cb3d968589d8 343 /**
Kojto 90:cb3d968589d8 344 * @}
Kojto 90:cb3d968589d8 345 */
Kojto 90:cb3d968589d8 346
Kojto 90:cb3d968589d8 347 /** @defgroup RTCEx_Smooth_calib_Minus_pulses_Definitions RTCEx Smooth calib Minus pulses Definition
Kojto 90:cb3d968589d8 348 * @{
Kojto 90:cb3d968589d8 349 */
Kojto 90:cb3d968589d8 350 #define IS_RTC_SMOOTH_CALIB_MINUS(VALUE) ((VALUE) <= 0x000001FF)
Kojto 90:cb3d968589d8 351 /**
Kojto 90:cb3d968589d8 352 * @}
Kojto 90:cb3d968589d8 353 */
Kojto 90:cb3d968589d8 354
Kojto 90:cb3d968589d8 355 /** @defgroup RTCEx_Add_1_Second_Parameter_Definition RTCEx Add 1 Second Parameter Definition
Kojto 90:cb3d968589d8 356 * @{
Kojto 90:cb3d968589d8 357 */
Kojto 90:cb3d968589d8 358 #define RTC_SHIFTADD1S_RESET ((uint32_t)0x00000000)
Kojto 90:cb3d968589d8 359 #define RTC_SHIFTADD1S_SET ((uint32_t)0x80000000)
Kojto 90:cb3d968589d8 360
Kojto 90:cb3d968589d8 361 #define IS_RTC_SHIFT_ADD1S(SEL) (((SEL) == RTC_SHIFTADD1S_RESET) || \
Kojto 90:cb3d968589d8 362 ((SEL) == RTC_SHIFTADD1S_SET))
Kojto 90:cb3d968589d8 363 /**
Kojto 90:cb3d968589d8 364 * @}
Kojto 90:cb3d968589d8 365 */
Kojto 90:cb3d968589d8 366
Kojto 90:cb3d968589d8 367 /** @defgroup RTCEx_Substract_Fraction_Of_Second_Value RTCEx Substract Fraction Of Second Value
Kojto 90:cb3d968589d8 368 * @{
Kojto 90:cb3d968589d8 369 */
Kojto 90:cb3d968589d8 370 #define IS_RTC_SHIFT_SUBFS(FS) ((FS) <= 0x00007FFF)
Kojto 90:cb3d968589d8 371 /**
Kojto 90:cb3d968589d8 372 * @}
Kojto 90:cb3d968589d8 373 */
Kojto 90:cb3d968589d8 374
Kojto 90:cb3d968589d8 375 /** @defgroup RTCEx_Calib_Output_selection_Definitions RTCEx Calib Output selection Definition
Kojto 90:cb3d968589d8 376 * @{
Kojto 90:cb3d968589d8 377 */
Kojto 90:cb3d968589d8 378 #define RTC_CALIBOUTPUT_512HZ ((uint32_t)0x00000000)
Kojto 90:cb3d968589d8 379 #define RTC_CALIBOUTPUT_1HZ ((uint32_t)0x00080000)
Kojto 90:cb3d968589d8 380
Kojto 90:cb3d968589d8 381 #define IS_RTC_CALIB_OUTPUT(OUTPUT) (((OUTPUT) == RTC_CALIBOUTPUT_512HZ) || \
Kojto 90:cb3d968589d8 382 ((OUTPUT) == RTC_CALIBOUTPUT_1HZ))
Kojto 90:cb3d968589d8 383 /**
Kojto 90:cb3d968589d8 384 * @}
Kojto 90:cb3d968589d8 385 */
Kojto 90:cb3d968589d8 386
Kojto 90:cb3d968589d8 387 /**
Kojto 90:cb3d968589d8 388 * @}
Kojto 90:cb3d968589d8 389 */
Kojto 90:cb3d968589d8 390
Kojto 90:cb3d968589d8 391 /* Exported macro ------------------------------------------------------------*/
Kojto 90:cb3d968589d8 392 /** @defgroup RTCEx_Exported_Macros RTCEx Exported Macros
Kojto 90:cb3d968589d8 393 * @{
Kojto 90:cb3d968589d8 394 */
Kojto 90:cb3d968589d8 395
Kojto 93:e188a91d3eaa 396 #if defined(STM32F071xB) || defined(STM32F072xB) || defined(STM32F078xx) || defined(STM32F091xC) || defined(STM32F098xx) || defined(STM32F070xB) || defined(STM32F030xC)
Kojto 90:cb3d968589d8 397 /**
Kojto 90:cb3d968589d8 398 * @brief Enable the RTC WakeUp Timer peripheral.
Kojto 90:cb3d968589d8 399 * @param __HANDLE__: specifies the RTC handle.
Kojto 90:cb3d968589d8 400 * @retval None
Kojto 90:cb3d968589d8 401 */
Kojto 90:cb3d968589d8 402 #define __HAL_RTC_WAKEUPTIMER_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR |= (RTC_CR_WUTE))
Kojto 93:e188a91d3eaa 403 #endif /* defined(STM32F071xB) || defined(STM32F072xB) || defined(STM32F078xx) || defined(STM32F091xC) || defined(STM32F098xx) || defined(STM32F070xB) || defined(STM32F030xC) */
Kojto 90:cb3d968589d8 404
Kojto 90:cb3d968589d8 405 /**
Kojto 90:cb3d968589d8 406 * @brief Enable the RTC TimeStamp peripheral.
Kojto 90:cb3d968589d8 407 * @param __HANDLE__: specifies the RTC handle.
Kojto 90:cb3d968589d8 408 * @retval None
Kojto 90:cb3d968589d8 409 */
Kojto 90:cb3d968589d8 410 #define __HAL_RTC_TIMESTAMP_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR |= (RTC_CR_TSE))
Kojto 90:cb3d968589d8 411
Kojto 93:e188a91d3eaa 412 #if defined(STM32F071xB) || defined(STM32F072xB) || defined(STM32F078xx) || defined(STM32F091xC) || defined(STM32F098xx) || defined(STM32F070xB) || defined(STM32F030xC)
Kojto 90:cb3d968589d8 413 /**
Kojto 90:cb3d968589d8 414 * @brief Disable the RTC WakeUp Timer peripheral.
Kojto 90:cb3d968589d8 415 * @param __HANDLE__: specifies the RTC handle.
Kojto 90:cb3d968589d8 416 * @retval None
Kojto 90:cb3d968589d8 417 */
Kojto 90:cb3d968589d8 418 #define __HAL_RTC_WAKEUPTIMER_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR &= ~(RTC_CR_WUTE))
Kojto 93:e188a91d3eaa 419 #endif /* defined(STM32F071xB) || defined(STM32F072xB) || defined(STM32F078xx) || defined(STM32F091xC) || defined(STM32F098xx) || defined(STM32F070xB) || defined(STM32F030xC) */
Kojto 90:cb3d968589d8 420
Kojto 90:cb3d968589d8 421 /**
Kojto 90:cb3d968589d8 422 * @brief Disable the RTC TimeStamp peripheral.
Kojto 90:cb3d968589d8 423 * @param __HANDLE__: specifies the RTC handle.
Kojto 90:cb3d968589d8 424 * @retval None
Kojto 90:cb3d968589d8 425 */
Kojto 90:cb3d968589d8 426 #define __HAL_RTC_TIMESTAMP_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR &= ~(RTC_CR_TSE))
Kojto 90:cb3d968589d8 427
Kojto 90:cb3d968589d8 428 /**
Kojto 90:cb3d968589d8 429 * @brief Enable the RTC calibration output.
Kojto 90:cb3d968589d8 430 * @param __HANDLE__: specifies the RTC handle.
Kojto 90:cb3d968589d8 431 * @retval None
Kojto 90:cb3d968589d8 432 */
Kojto 90:cb3d968589d8 433 #define __HAL_RTC_CALIBRATION_OUTPUT_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR |= (RTC_CR_COE))
Kojto 90:cb3d968589d8 434
Kojto 90:cb3d968589d8 435 /**
Kojto 90:cb3d968589d8 436 * @brief Disable the calibration output.
Kojto 90:cb3d968589d8 437 * @param __HANDLE__: specifies the RTC handle.
Kojto 90:cb3d968589d8 438 * @retval None
Kojto 90:cb3d968589d8 439 */
Kojto 90:cb3d968589d8 440 #define __HAL_RTC_CALIBRATION_OUTPUT_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR &= ~(RTC_CR_COE))
Kojto 90:cb3d968589d8 441
Kojto 90:cb3d968589d8 442 /**
Kojto 90:cb3d968589d8 443 * @brief Enable the clock reference detection.
Kojto 90:cb3d968589d8 444 * @param __HANDLE__: specifies the RTC handle.
Kojto 90:cb3d968589d8 445 * @retval None
Kojto 90:cb3d968589d8 446 */
Kojto 90:cb3d968589d8 447 #define __HAL_RTC_CLOCKREF_DETECTION_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR |= (RTC_CR_REFCKON))
Kojto 90:cb3d968589d8 448
Kojto 90:cb3d968589d8 449 /**
Kojto 90:cb3d968589d8 450 * @brief Disable the clock reference detection.
Kojto 90:cb3d968589d8 451 * @param __HANDLE__: specifies the RTC handle.
Kojto 90:cb3d968589d8 452 * @retval None
Kojto 90:cb3d968589d8 453 */
Kojto 90:cb3d968589d8 454 #define __HAL_RTC_CLOCKREF_DETECTION_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR &= ~(RTC_CR_REFCKON))
Kojto 90:cb3d968589d8 455
Kojto 90:cb3d968589d8 456 /**
Kojto 90:cb3d968589d8 457 * @brief Enable the RTC TimeStamp interrupt.
Kojto 90:cb3d968589d8 458 * @param __HANDLE__: specifies the RTC handle.
Kojto 90:cb3d968589d8 459 * @param __INTERRUPT__: specifies the RTC TimeStamp interrupt sources to be enabled or disabled.
Kojto 90:cb3d968589d8 460 * This parameter can be:
Kojto 90:cb3d968589d8 461 * @arg RTC_IT_TS: TimeStamp interrupt
Kojto 90:cb3d968589d8 462 * @retval None
Kojto 90:cb3d968589d8 463 */
Kojto 90:cb3d968589d8 464 #define __HAL_RTC_TIMESTAMP_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR |= (__INTERRUPT__))
Kojto 90:cb3d968589d8 465
Kojto 93:e188a91d3eaa 466 #if defined(STM32F071xB) || defined(STM32F072xB) || defined(STM32F078xx) || defined(STM32F091xC) || defined(STM32F098xx) || defined(STM32F070xB) || defined(STM32F030xC)
Kojto 90:cb3d968589d8 467 /**
Kojto 90:cb3d968589d8 468 * @brief Enable the RTC WakeUpTimer interrupt.
Kojto 90:cb3d968589d8 469 * @param __HANDLE__: specifies the RTC handle.
Kojto 90:cb3d968589d8 470 * @param __INTERRUPT__: specifies the RTC WakeUpTimer interrupt sources to be enabled or disabled.
Kojto 90:cb3d968589d8 471 * This parameter can be:
Kojto 90:cb3d968589d8 472 * @arg RTC_IT_WUT: WakeUpTimer A interrupt
Kojto 90:cb3d968589d8 473 * @retval None
Kojto 90:cb3d968589d8 474 */
Kojto 90:cb3d968589d8 475 #define __HAL_RTC_WAKEUPTIMER_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR |= (__INTERRUPT__))
Kojto 93:e188a91d3eaa 476 #endif /* defined(STM32F071xB) || defined(STM32F072xB) || defined(STM32F078xx) || defined(STM32F091xC) || defined(STM32F098xx) || defined(STM32F070xB) || defined(STM32F030xC) */
Kojto 90:cb3d968589d8 477
Kojto 90:cb3d968589d8 478 /**
Kojto 90:cb3d968589d8 479 * @brief Disable the RTC TimeStamp interrupt.
Kojto 90:cb3d968589d8 480 * @param __HANDLE__: specifies the RTC handle.
Kojto 90:cb3d968589d8 481 * @param __INTERRUPT__: specifies the RTC TimeStamp interrupt sources to be enabled or disabled.
Kojto 90:cb3d968589d8 482 * This parameter can be:
Kojto 90:cb3d968589d8 483 * @arg RTC_IT_TS: TimeStamp interrupt
Kojto 90:cb3d968589d8 484 * @retval None
Kojto 90:cb3d968589d8 485 */
Kojto 90:cb3d968589d8 486 #define __HAL_RTC_TIMESTAMP_DISABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR &= ~(__INTERRUPT__))
Kojto 90:cb3d968589d8 487
Kojto 93:e188a91d3eaa 488 #if defined(STM32F071xB) || defined(STM32F072xB) || defined(STM32F078xx) || defined(STM32F091xC) || defined(STM32F098xx) || defined(STM32F070xB) || defined(STM32F030xC)
Kojto 90:cb3d968589d8 489 /**
Kojto 90:cb3d968589d8 490 * @brief Disable the RTC WakeUpTimer interrupt.
Kojto 90:cb3d968589d8 491 * @param __HANDLE__: specifies the RTC handle.
Kojto 90:cb3d968589d8 492 * @param __INTERRUPT__: specifies the RTC WakeUpTimer interrupt sources to be enabled or disabled.
Kojto 90:cb3d968589d8 493 * This parameter can be:
Kojto 90:cb3d968589d8 494 * @arg RTC_IT_WUT: WakeUpTimer A interrupt
Kojto 90:cb3d968589d8 495 * @retval None
Kojto 90:cb3d968589d8 496 */
Kojto 90:cb3d968589d8 497 #define __HAL_RTC_WAKEUPTIMER_DISABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR &= ~(__INTERRUPT__))
Kojto 93:e188a91d3eaa 498 #endif /* defined(STM32F071xB) || defined(STM32F072xB) || defined(STM32F078xx) || defined(STM32F091xC) || defined(STM32F098xx) || defined(STM32F070xB) || defined(STM32F030xC) */
Kojto 90:cb3d968589d8 499
Kojto 90:cb3d968589d8 500 /**
Kojto 90:cb3d968589d8 501 * @brief Check whether the specified RTC Tamper interrupt has occurred or not.
Kojto 90:cb3d968589d8 502 * @param __HANDLE__: specifies the RTC handle.
Kojto 90:cb3d968589d8 503 * @param __FLAG__: specifies the RTC Tamper interrupt sources to be enabled or disabled.
Kojto 90:cb3d968589d8 504 * This parameter can be:
Kojto 90:cb3d968589d8 505 * @arg RTC_IT_TAMP1
Kojto 90:cb3d968589d8 506 * @retval None
Kojto 90:cb3d968589d8 507 */
Kojto 90:cb3d968589d8 508 #define __HAL_RTC_TAMPER_GET_IT(__HANDLE__, __FLAG__) (((((__HANDLE__)->Instance->ISR) & ((__FLAG__)>> 4)) != RESET)? SET : RESET)
Kojto 90:cb3d968589d8 509
Kojto 93:e188a91d3eaa 510 #if defined(STM32F071xB) || defined(STM32F072xB) || defined(STM32F078xx) || defined(STM32F091xC) || defined(STM32F098xx) || defined(STM32F070xB) || defined(STM32F030xC)
Kojto 90:cb3d968589d8 511 /**
Kojto 90:cb3d968589d8 512 * @brief Check whether the specified RTC WakeUpTimer interrupt has occurred or not.
Kojto 90:cb3d968589d8 513 * @param __HANDLE__: specifies the RTC handle.
Kojto 90:cb3d968589d8 514 * @param __FLAG__: specifies the RTC WakeUpTimer interrupt sources to be enabled or disabled.
Kojto 90:cb3d968589d8 515 * This parameter can be:
Kojto 90:cb3d968589d8 516 * @arg RTC_IT_WUT: WakeUpTimer A interrupt
Kojto 90:cb3d968589d8 517 * @retval None
Kojto 90:cb3d968589d8 518 */
Kojto 90:cb3d968589d8 519 #define __HAL_RTC_WAKEUPTIMER_GET_IT(__HANDLE__, __FLAG__) (((((__HANDLE__)->Instance->ISR) & ((__FLAG__)>> 4)) != RESET)? SET : RESET)
Kojto 93:e188a91d3eaa 520 #endif /* defined(STM32F071xB) || defined(STM32F072xB) || defined(STM32F078xx) || defined(STM32F091xC) || defined(STM32F098xx) || defined(STM32F070xB) || defined(STM32F030xC) */
Kojto 90:cb3d968589d8 521
Kojto 90:cb3d968589d8 522 /**
Kojto 90:cb3d968589d8 523 * @brief Check whether the specified RTC TimeStamp interrupt has occurred or not.
Kojto 90:cb3d968589d8 524 * @param __HANDLE__: specifies the RTC handle.
Kojto 90:cb3d968589d8 525 * @param __FLAG__: specifies the RTC TimeStamp interrupt sources to be enabled or disabled.
Kojto 90:cb3d968589d8 526 * This parameter can be:
Kojto 90:cb3d968589d8 527 * @arg RTC_IT_TS: TimeStamp interrupt
Kojto 90:cb3d968589d8 528 * @retval None
Kojto 90:cb3d968589d8 529 */
Kojto 90:cb3d968589d8 530 #define __HAL_RTC_TIMESTAMP_GET_IT(__HANDLE__, __FLAG__) (((((__HANDLE__)->Instance->ISR) & ((__FLAG__)>> 4)) != RESET)? SET : RESET)
Kojto 90:cb3d968589d8 531
Kojto 90:cb3d968589d8 532 /**
Kojto 90:cb3d968589d8 533 * @brief Get the selected RTC TimeStamp's flag status.
Kojto 90:cb3d968589d8 534 * @param __HANDLE__: specifies the RTC handle.
Kojto 90:cb3d968589d8 535 * @param __FLAG__: specifies the RTC TimeStamp Flag sources to be enabled or disabled.
Kojto 90:cb3d968589d8 536 * This parameter can be:
Kojto 90:cb3d968589d8 537 * @arg RTC_FLAG_TSF
Kojto 90:cb3d968589d8 538 * @arg RTC_FLAG_TSOVF
Kojto 90:cb3d968589d8 539 * @retval None
Kojto 90:cb3d968589d8 540 */
Kojto 90:cb3d968589d8 541 #define __HAL_RTC_TIMESTAMP_GET_FLAG(__HANDLE__, __FLAG__) (((((__HANDLE__)->Instance->ISR) & (__FLAG__)) != RESET)? SET : RESET)
Kojto 90:cb3d968589d8 542
Kojto 93:e188a91d3eaa 543 #if defined(STM32F071xB) || defined(STM32F072xB) || defined(STM32F078xx) || defined(STM32F091xC) || defined(STM32F098xx) || defined(STM32F070xB) || defined(STM32F030xC)
Kojto 90:cb3d968589d8 544 /**
Kojto 90:cb3d968589d8 545 * @brief Get the selected RTC WakeUpTimer's flag status.
Kojto 90:cb3d968589d8 546 * @param __HANDLE__: specifies the RTC handle.
Kojto 90:cb3d968589d8 547 * @param __FLAG__: specifies the RTC WakeUpTimer Flag sources to be enabled or disabled.
Kojto 90:cb3d968589d8 548 * This parameter can be:
Kojto 90:cb3d968589d8 549 * @arg RTC_FLAG_WUTF
Kojto 90:cb3d968589d8 550 * @arg RTC_FLAG_WUTWF
Kojto 90:cb3d968589d8 551 * @retval None
Kojto 90:cb3d968589d8 552 */
Kojto 90:cb3d968589d8 553 #define __HAL_RTC_WAKEUPTIMER_GET_FLAG(__HANDLE__, __FLAG__) (((((__HANDLE__)->Instance->ISR) & (__FLAG__)) != RESET)? SET : RESET)
Kojto 93:e188a91d3eaa 554 #endif /* defined(STM32F071xB) || defined(STM32F072xB) || defined(STM32F078xx) || defined(STM32F091xC) || defined(STM32F098xx) || defined(STM32F070xB) || defined(STM32F030xC) */
Kojto 90:cb3d968589d8 555
Kojto 90:cb3d968589d8 556 /**
Kojto 90:cb3d968589d8 557 * @brief Get the selected RTC Tamper's flag status.
Kojto 90:cb3d968589d8 558 * @param __HANDLE__: specifies the RTC handle.
Kojto 90:cb3d968589d8 559 * @param __FLAG__: specifies the RTC Tamper Flag sources to be enabled or disabled.
Kojto 90:cb3d968589d8 560 * This parameter can be:
Kojto 90:cb3d968589d8 561 * @arg RTC_FLAG_TAMP1F
Kojto 90:cb3d968589d8 562 * @retval None
Kojto 90:cb3d968589d8 563 */
Kojto 90:cb3d968589d8 564 #define __HAL_RTC_TAMPER_GET_FLAG(__HANDLE__, __FLAG__) (((((__HANDLE__)->Instance->ISR) & (__FLAG__)) != RESET)? SET : RESET)
Kojto 90:cb3d968589d8 565
Kojto 90:cb3d968589d8 566 /**
Kojto 90:cb3d968589d8 567 * @brief Get the selected RTC shift operation's flag status.
Kojto 90:cb3d968589d8 568 * @param __HANDLE__: specifies the RTC handle.
Kojto 90:cb3d968589d8 569 * @param __FLAG__: specifies the RTC shift operation Flag is pending or not.
Kojto 90:cb3d968589d8 570 * This parameter can be:
Kojto 90:cb3d968589d8 571 * @arg RTC_FLAG_SHPF
Kojto 90:cb3d968589d8 572 * @retval None
Kojto 90:cb3d968589d8 573 */
Kojto 90:cb3d968589d8 574 #define __HAL_RTC_SHIFT_GET_FLAG(__HANDLE__, __FLAG__) (((((__HANDLE__)->Instance->ISR) & (__FLAG__)) != RESET)? SET : RESET)
Kojto 90:cb3d968589d8 575
Kojto 90:cb3d968589d8 576 /**
Kojto 90:cb3d968589d8 577 * @brief Clear the RTC Time Stamp's pending flags.
Kojto 90:cb3d968589d8 578 * @param __HANDLE__: specifies the RTC handle.
Kojto 90:cb3d968589d8 579 * @param __FLAG__: specifies the RTC Alarm Flag sources to be enabled or disabled.
Kojto 90:cb3d968589d8 580 * This parameter can be:
Kojto 90:cb3d968589d8 581 * @arg RTC_FLAG_TSF
Kojto 90:cb3d968589d8 582 * @retval None
Kojto 90:cb3d968589d8 583 */
Kojto 90:cb3d968589d8 584 #define __HAL_RTC_TIMESTAMP_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->ISR) = (~(((__FLAG__) | RTC_ISR_INIT)& 0x0000FFFF)|((__HANDLE__)->Instance->ISR & RTC_ISR_INIT))
Kojto 90:cb3d968589d8 585
Kojto 90:cb3d968589d8 586 /**
Kojto 90:cb3d968589d8 587 * @brief Clear the RTC Tamper's pending flags.
Kojto 90:cb3d968589d8 588 * @param __HANDLE__: specifies the RTC handle.
Kojto 90:cb3d968589d8 589 * @param __FLAG__: specifies the RTC Tamper Flag sources to be enabled or disabled.
Kojto 90:cb3d968589d8 590 * This parameter can be:
Kojto 90:cb3d968589d8 591 * @arg RTC_FLAG_TAMP1F
Kojto 90:cb3d968589d8 592 * @retval None
Kojto 90:cb3d968589d8 593 */
Kojto 90:cb3d968589d8 594 #define __HAL_RTC_TAMPER_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->ISR) = (~(((__FLAG__) | RTC_ISR_INIT)& 0x0000FFFF)|((__HANDLE__)->Instance->ISR & RTC_ISR_INIT))
Kojto 90:cb3d968589d8 595
Kojto 93:e188a91d3eaa 596 #if defined(STM32F071xB) || defined(STM32F072xB) || defined(STM32F078xx) || defined(STM32F091xC) || defined(STM32F098xx) || defined(STM32F070xB) || defined(STM32F030xC)
Kojto 90:cb3d968589d8 597 /**
Kojto 90:cb3d968589d8 598 * @brief Clear the RTC Wake Up timer's pending flags.
Kojto 90:cb3d968589d8 599 * @param __HANDLE__: specifies the RTC handle.
Kojto 90:cb3d968589d8 600 * @param __FLAG__: specifies the RTC Tamper Flag sources to be enabled or disabled.
Kojto 90:cb3d968589d8 601 * This parameter can be:
Kojto 90:cb3d968589d8 602 * @arg RTC_FLAG_WUTF
Kojto 90:cb3d968589d8 603 * @retval None
Kojto 90:cb3d968589d8 604 */
Kojto 90:cb3d968589d8 605 #define __HAL_RTC_WAKEUPTIMER_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->ISR) = (~(((__FLAG__) | RTC_ISR_INIT)& 0x0000FFFF)|((__HANDLE__)->Instance->ISR & RTC_ISR_INIT))
Kojto 93:e188a91d3eaa 606 #endif /* defined(STM32F071xB) || defined(STM32F072xB) || defined(STM32F078xx) || defined(STM32F091xC) || defined(STM32F098xx) || defined(STM32F070xB) || defined(STM32F030xC) */
Kojto 90:cb3d968589d8 607 /**
Kojto 90:cb3d968589d8 608 * @}
Kojto 90:cb3d968589d8 609 */
Kojto 90:cb3d968589d8 610
Kojto 90:cb3d968589d8 611 /* Exported functions --------------------------------------------------------*/
Kojto 90:cb3d968589d8 612 /** @addtogroup RTCEx_Exported_Functions
Kojto 90:cb3d968589d8 613 * @{
Kojto 90:cb3d968589d8 614 */
Kojto 90:cb3d968589d8 615
Kojto 90:cb3d968589d8 616 /** @addtogroup RTCEx_Exported_Functions_Group1
Kojto 90:cb3d968589d8 617 * @{
Kojto 90:cb3d968589d8 618 */
Kojto 90:cb3d968589d8 619
Kojto 90:cb3d968589d8 620 /* RTC TimeStamp and Tamper functions *****************************************/
Kojto 90:cb3d968589d8 621 HAL_StatusTypeDef HAL_RTCEx_SetTimeStamp(RTC_HandleTypeDef *hrtc, uint32_t TimeStampEdge, uint32_t RTC_TimeStampPin);
Kojto 90:cb3d968589d8 622 HAL_StatusTypeDef HAL_RTCEx_SetTimeStamp_IT(RTC_HandleTypeDef *hrtc, uint32_t TimeStampEdge, uint32_t RTC_TimeStampPin);
Kojto 90:cb3d968589d8 623 HAL_StatusTypeDef HAL_RTCEx_DeactivateTimeStamp(RTC_HandleTypeDef *hrtc);
Kojto 90:cb3d968589d8 624 HAL_StatusTypeDef HAL_RTCEx_GetTimeStamp(RTC_HandleTypeDef *hrtc, RTC_TimeTypeDef *sTimeStamp, RTC_DateTypeDef *sTimeStampDate, uint32_t Format);
Kojto 90:cb3d968589d8 625
Kojto 90:cb3d968589d8 626 HAL_StatusTypeDef HAL_RTCEx_SetTamper(RTC_HandleTypeDef *hrtc, RTC_TamperTypeDef* sTamper);
Kojto 90:cb3d968589d8 627 HAL_StatusTypeDef HAL_RTCEx_SetTamper_IT(RTC_HandleTypeDef *hrtc, RTC_TamperTypeDef* sTamper);
Kojto 90:cb3d968589d8 628 HAL_StatusTypeDef HAL_RTCEx_DeactivateTamper(RTC_HandleTypeDef *hrtc, uint32_t Tamper);
Kojto 90:cb3d968589d8 629 void HAL_RTCEx_TamperTimeStampIRQHandler(RTC_HandleTypeDef *hrtc);
Kojto 90:cb3d968589d8 630
Kojto 90:cb3d968589d8 631 void HAL_RTCEx_Tamper1EventCallback(RTC_HandleTypeDef *hrtc);
Kojto 90:cb3d968589d8 632 void HAL_RTCEx_Tamper2EventCallback(RTC_HandleTypeDef *hrtc);
Kojto 93:e188a91d3eaa 633 #if defined(STM32F071xB) || defined(STM32F072xB) || defined(STM32F078xx) || defined(STM32F091xC) || defined(STM32F098xx) || defined(STM32F070xB) || defined(STM32F030xC)
Kojto 90:cb3d968589d8 634 void HAL_RTCEx_Tamper3EventCallback(RTC_HandleTypeDef *hrtc);
Kojto 90:cb3d968589d8 635 #endif
Kojto 90:cb3d968589d8 636 void HAL_RTCEx_TimeStampEventCallback(RTC_HandleTypeDef *hrtc);
Kojto 90:cb3d968589d8 637 HAL_StatusTypeDef HAL_RTCEx_PollForTimeStampEvent(RTC_HandleTypeDef *hrtc, uint32_t Timeout);
Kojto 90:cb3d968589d8 638 HAL_StatusTypeDef HAL_RTCEx_PollForTamper1Event(RTC_HandleTypeDef *hrtc, uint32_t Timeout);
Kojto 90:cb3d968589d8 639 HAL_StatusTypeDef HAL_RTCEx_PollForTamper2Event(RTC_HandleTypeDef *hrtc, uint32_t Timeout);
Kojto 93:e188a91d3eaa 640 #if defined(STM32F071xB) || defined(STM32F072xB) || defined(STM32F078xx) || defined(STM32F091xC) || defined(STM32F098xx) || defined(STM32F070xB) || defined(STM32F030xC)
Kojto 90:cb3d968589d8 641 HAL_StatusTypeDef HAL_RTCEx_PollForTamper3Event(RTC_HandleTypeDef *hrtc, uint32_t Timeout);
Kojto 90:cb3d968589d8 642 #endif
Kojto 90:cb3d968589d8 643 /**
Kojto 90:cb3d968589d8 644 * @}
Kojto 90:cb3d968589d8 645 */
Kojto 90:cb3d968589d8 646
Kojto 93:e188a91d3eaa 647 #if defined(STM32F071xB) || defined(STM32F072xB) || defined(STM32F078xx) || defined(STM32F091xC) || defined(STM32F098xx) || defined(STM32F070xB) || defined(STM32F030xC)
Kojto 90:cb3d968589d8 648 /** @addtogroup RTCEx_Exported_Functions_Group2
Kojto 90:cb3d968589d8 649 * @{
Kojto 90:cb3d968589d8 650 */
Kojto 90:cb3d968589d8 651
Kojto 90:cb3d968589d8 652 /* RTC Wake-up functions ******************************************************/
Kojto 90:cb3d968589d8 653 HAL_StatusTypeDef HAL_RTCEx_SetWakeUpTimer(RTC_HandleTypeDef *hrtc, uint32_t WakeUpCounter, uint32_t WakeUpClock);
Kojto 90:cb3d968589d8 654 HAL_StatusTypeDef HAL_RTCEx_SetWakeUpTimer_IT(RTC_HandleTypeDef *hrtc, uint32_t WakeUpCounter, uint32_t WakeUpClock);
Kojto 90:cb3d968589d8 655 uint32_t HAL_RTCEx_DeactivateWakeUpTimer(RTC_HandleTypeDef *hrtc);
Kojto 90:cb3d968589d8 656 uint32_t HAL_RTCEx_GetWakeUpTimer(RTC_HandleTypeDef *hrtc);
Kojto 90:cb3d968589d8 657 void HAL_RTCEx_WakeUpTimerIRQHandler(RTC_HandleTypeDef *hrtc);
Kojto 90:cb3d968589d8 658 void HAL_RTCEx_WakeUpTimerEventCallback(RTC_HandleTypeDef *hrtc);
Kojto 90:cb3d968589d8 659 HAL_StatusTypeDef HAL_RTCEx_PollForWakeUpTimerEvent(RTC_HandleTypeDef *hrtc, uint32_t Timeout);
Kojto 90:cb3d968589d8 660 #endif
Kojto 90:cb3d968589d8 661 /**
Kojto 90:cb3d968589d8 662 * @}
Kojto 90:cb3d968589d8 663 */
Kojto 90:cb3d968589d8 664
Kojto 90:cb3d968589d8 665 /** @addtogroup RTCEx_Exported_Functions_Group3
Kojto 90:cb3d968589d8 666 * @{
Kojto 90:cb3d968589d8 667 */
Kojto 90:cb3d968589d8 668
Kojto 90:cb3d968589d8 669 /* Extension Control functions ************************************************/
Kojto 93:e188a91d3eaa 670 #if !defined(STM32F030x6) && !defined(STM32F030x8) && !defined(STM32F030xC) && !defined(STM32F070x6) && !defined(STM32F070xB)
Kojto 90:cb3d968589d8 671 void HAL_RTCEx_BKUPWrite(RTC_HandleTypeDef *hrtc, uint32_t BackupRegister, uint32_t Data);
Kojto 90:cb3d968589d8 672 uint32_t HAL_RTCEx_BKUPRead(RTC_HandleTypeDef *hrtc, uint32_t BackupRegister);
Kojto 93:e188a91d3eaa 673 #endif /* !defined(STM32F030x6) && !defined(STM32F030x8) && !defined(STM32F030xC) && !defined(STM32F070x6) && !defined(STM32F070xB) */
Kojto 90:cb3d968589d8 674
Kojto 90:cb3d968589d8 675 HAL_StatusTypeDef HAL_RTCEx_SetSmoothCalib(RTC_HandleTypeDef *hrtc, uint32_t SmoothCalibPeriod, uint32_t SmoothCalibPlusPulses, uint32_t SmouthCalibMinusPulsesValue);
Kojto 90:cb3d968589d8 676 HAL_StatusTypeDef HAL_RTCEx_SetSynchroShift(RTC_HandleTypeDef *hrtc, uint32_t ShiftAdd1S, uint32_t ShiftSubFS);
Kojto 90:cb3d968589d8 677 HAL_StatusTypeDef HAL_RTCEx_SetCalibrationOutPut(RTC_HandleTypeDef *hrtc, uint32_t CalibOutput);
Kojto 90:cb3d968589d8 678 HAL_StatusTypeDef HAL_RTCEx_DeactivateCalibrationOutPut(RTC_HandleTypeDef *hrtc);
Kojto 90:cb3d968589d8 679 HAL_StatusTypeDef HAL_RTCEx_SetRefClock(RTC_HandleTypeDef *hrtc);
Kojto 90:cb3d968589d8 680 HAL_StatusTypeDef HAL_RTCEx_DeactivateRefClock(RTC_HandleTypeDef *hrtc);
Kojto 90:cb3d968589d8 681 HAL_StatusTypeDef HAL_RTCEx_EnableBypassShadow(RTC_HandleTypeDef *hrtc);
Kojto 90:cb3d968589d8 682 HAL_StatusTypeDef HAL_RTCEx_DisableBypassShadow(RTC_HandleTypeDef *hrtc);
Kojto 90:cb3d968589d8 683 /**
Kojto 90:cb3d968589d8 684 * @}
Kojto 90:cb3d968589d8 685 */
Kojto 90:cb3d968589d8 686
Kojto 90:cb3d968589d8 687 /* Extension RTC features functions *******************************************/
Kojto 90:cb3d968589d8 688
Kojto 90:cb3d968589d8 689 /**
Kojto 90:cb3d968589d8 690 * @}
Kojto 90:cb3d968589d8 691 */
Kojto 90:cb3d968589d8 692
Kojto 90:cb3d968589d8 693 /**
Kojto 90:cb3d968589d8 694 * @}
Kojto 90:cb3d968589d8 695 */
Kojto 90:cb3d968589d8 696
Kojto 90:cb3d968589d8 697 /**
Kojto 90:cb3d968589d8 698 * @}
Kojto 90:cb3d968589d8 699 */
Kojto 90:cb3d968589d8 700
Kojto 90:cb3d968589d8 701 #ifdef __cplusplus
Kojto 90:cb3d968589d8 702 }
Kojto 90:cb3d968589d8 703 #endif
Kojto 90:cb3d968589d8 704
Kojto 90:cb3d968589d8 705 #endif /* __STM32F0xx_HAL_RTC_EX_H */
Kojto 90:cb3d968589d8 706
Kojto 90:cb3d968589d8 707 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
Kojto 90:cb3d968589d8 708