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:
110:165afa46840b
.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 110:165afa46840b 1 /**
Kojto 110:165afa46840b 2 ******************************************************************************
Kojto 110:165afa46840b 3 * @file stm32f4xx_hal_rtc.h
Kojto 110:165afa46840b 4 * @author MCD Application Team
Kojto 110:165afa46840b 5 * @version V1.4.1
Kojto 110:165afa46840b 6 * @date 09-October-2015
Kojto 110:165afa46840b 7 * @brief Header file of RTC HAL module.
Kojto 110:165afa46840b 8 ******************************************************************************
Kojto 110:165afa46840b 9 * @attention
Kojto 110:165afa46840b 10 *
Kojto 110:165afa46840b 11 * <h2><center>&copy; COPYRIGHT(c) 2015 STMicroelectronics</center></h2>
Kojto 110:165afa46840b 12 *
Kojto 110:165afa46840b 13 * Redistribution and use in source and binary forms, with or without modification,
Kojto 110:165afa46840b 14 * are permitted provided that the following conditions are met:
Kojto 110:165afa46840b 15 * 1. Redistributions of source code must retain the above copyright notice,
Kojto 110:165afa46840b 16 * this list of conditions and the following disclaimer.
Kojto 110:165afa46840b 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
Kojto 110:165afa46840b 18 * this list of conditions and the following disclaimer in the documentation
Kojto 110:165afa46840b 19 * and/or other materials provided with the distribution.
Kojto 110:165afa46840b 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Kojto 110:165afa46840b 21 * may be used to endorse or promote products derived from this software
Kojto 110:165afa46840b 22 * without specific prior written permission.
Kojto 110:165afa46840b 23 *
Kojto 110:165afa46840b 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Kojto 110:165afa46840b 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Kojto 110:165afa46840b 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Kojto 110:165afa46840b 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Kojto 110:165afa46840b 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Kojto 110:165afa46840b 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Kojto 110:165afa46840b 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Kojto 110:165afa46840b 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Kojto 110:165afa46840b 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Kojto 110:165afa46840b 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Kojto 110:165afa46840b 34 *
Kojto 110:165afa46840b 35 ******************************************************************************
Kojto 110:165afa46840b 36 */
Kojto 110:165afa46840b 37
Kojto 110:165afa46840b 38 /* Define to prevent recursive inclusion -------------------------------------*/
Kojto 110:165afa46840b 39 #ifndef __STM32F4xx_HAL_RTC_H
Kojto 110:165afa46840b 40 #define __STM32F4xx_HAL_RTC_H
Kojto 110:165afa46840b 41
Kojto 110:165afa46840b 42 #ifdef __cplusplus
Kojto 110:165afa46840b 43 extern "C" {
Kojto 110:165afa46840b 44 #endif
Kojto 110:165afa46840b 45
Kojto 110:165afa46840b 46 /* Includes ------------------------------------------------------------------*/
Kojto 110:165afa46840b 47 #include "stm32f4xx_hal_def.h"
Kojto 110:165afa46840b 48
Kojto 110:165afa46840b 49 /** @addtogroup STM32F4xx_HAL_Driver
Kojto 110:165afa46840b 50 * @{
Kojto 110:165afa46840b 51 */
Kojto 110:165afa46840b 52
Kojto 110:165afa46840b 53 /** @addtogroup RTC
Kojto 110:165afa46840b 54 * @{
Kojto 110:165afa46840b 55 */
Kojto 110:165afa46840b 56
Kojto 110:165afa46840b 57 /* Exported types ------------------------------------------------------------*/
Kojto 110:165afa46840b 58 /** @defgroup RTC_Exported_Types RTC Exported Types
Kojto 110:165afa46840b 59 * @{
Kojto 110:165afa46840b 60 */
Kojto 110:165afa46840b 61
Kojto 110:165afa46840b 62 /**
Kojto 110:165afa46840b 63 * @brief HAL State structures definition
Kojto 110:165afa46840b 64 */
Kojto 110:165afa46840b 65 typedef enum
Kojto 110:165afa46840b 66 {
Kojto 110:165afa46840b 67 HAL_RTC_STATE_RESET = 0x00, /*!< RTC not yet initialized or disabled */
Kojto 110:165afa46840b 68 HAL_RTC_STATE_READY = 0x01, /*!< RTC initialized and ready for use */
Kojto 110:165afa46840b 69 HAL_RTC_STATE_BUSY = 0x02, /*!< RTC process is ongoing */
Kojto 110:165afa46840b 70 HAL_RTC_STATE_TIMEOUT = 0x03, /*!< RTC timeout state */
Kojto 110:165afa46840b 71 HAL_RTC_STATE_ERROR = 0x04 /*!< RTC error state */
Kojto 110:165afa46840b 72
Kojto 110:165afa46840b 73 }HAL_RTCStateTypeDef;
Kojto 110:165afa46840b 74
Kojto 110:165afa46840b 75 /**
Kojto 110:165afa46840b 76 * @brief RTC Configuration Structure definition
Kojto 110:165afa46840b 77 */
Kojto 110:165afa46840b 78 typedef struct
Kojto 110:165afa46840b 79 {
Kojto 110:165afa46840b 80 uint32_t HourFormat; /*!< Specifies the RTC Hour Format.
Kojto 110:165afa46840b 81 This parameter can be a value of @ref RTC_Hour_Formats */
Kojto 110:165afa46840b 82
Kojto 110:165afa46840b 83 uint32_t AsynchPrediv; /*!< Specifies the RTC Asynchronous Predivider value.
Kojto 110:165afa46840b 84 This parameter must be a number between Min_Data = 0x00 and Max_Data = 0x7F */
Kojto 110:165afa46840b 85
Kojto 110:165afa46840b 86 uint32_t SynchPrediv; /*!< Specifies the RTC Synchronous Predivider value.
Kojto 110:165afa46840b 87 This parameter must be a number between Min_Data = 0x00 and Max_Data = 0x7FFF */
Kojto 110:165afa46840b 88
Kojto 110:165afa46840b 89 uint32_t OutPut; /*!< Specifies which signal will be routed to the RTC output.
Kojto 110:165afa46840b 90 This parameter can be a value of @ref RTC_Output_selection_Definitions */
Kojto 110:165afa46840b 91
Kojto 110:165afa46840b 92 uint32_t OutPutPolarity; /*!< Specifies the polarity of the output signal.
Kojto 110:165afa46840b 93 This parameter can be a value of @ref RTC_Output_Polarity_Definitions */
Kojto 110:165afa46840b 94
Kojto 110:165afa46840b 95 uint32_t OutPutType; /*!< Specifies the RTC Output Pin mode.
Kojto 110:165afa46840b 96 This parameter can be a value of @ref RTC_Output_Type_ALARM_OUT */
Kojto 110:165afa46840b 97 }RTC_InitTypeDef;
Kojto 110:165afa46840b 98
Kojto 110:165afa46840b 99 /**
Kojto 110:165afa46840b 100 * @brief RTC Time structure definition
Kojto 110:165afa46840b 101 */
Kojto 110:165afa46840b 102 typedef struct
Kojto 110:165afa46840b 103 {
Kojto 110:165afa46840b 104 uint8_t Hours; /*!< Specifies the RTC Time Hour.
Kojto 110:165afa46840b 105 This parameter must be a number between Min_Data = 0 and Max_Data = 12 if the RTC_HourFormat_12 is selected.
Kojto 110:165afa46840b 106 This parameter must be a number between Min_Data = 0 and Max_Data = 23 if the RTC_HourFormat_24 is selected */
Kojto 110:165afa46840b 107
Kojto 110:165afa46840b 108 uint8_t Minutes; /*!< Specifies the RTC Time Minutes.
Kojto 110:165afa46840b 109 This parameter must be a number between Min_Data = 0 and Max_Data = 59 */
Kojto 110:165afa46840b 110
Kojto 110:165afa46840b 111 uint8_t Seconds; /*!< Specifies the RTC Time Seconds.
Kojto 110:165afa46840b 112 This parameter must be a number between Min_Data = 0 and Max_Data = 59 */
Kojto 110:165afa46840b 113
Kojto 110:165afa46840b 114 uint8_t TimeFormat; /*!< Specifies the RTC AM/PM Time.
Kojto 110:165afa46840b 115 This parameter can be a value of @ref RTC_AM_PM_Definitions */
Kojto 110:165afa46840b 116
Kojto 110:165afa46840b 117 uint32_t SubSeconds; /*!< Specifies the RTC_SSR RTC Sub Second register content.
Kojto 110:165afa46840b 118 This parameter corresponds to a time unit range between [0-1] Second
Kojto 110:165afa46840b 119 with [1 Sec / SecondFraction +1] granularity */
Kojto 110:165afa46840b 120
Kojto 110:165afa46840b 121 uint32_t SecondFraction; /*!< Specifies the range or granularity of Sub Second register content
Kojto 110:165afa46840b 122 corresponding to Synchronous pre-scaler factor value (PREDIV_S)
Kojto 110:165afa46840b 123 This parameter corresponds to a time unit range between [0-1] Second
Kojto 110:165afa46840b 124 with [1 Sec / SecondFraction +1] granularity.
Kojto 110:165afa46840b 125 This field will be used only by HAL_RTC_GetTime function */
Kojto 110:165afa46840b 126
Kojto 110:165afa46840b 127 uint32_t DayLightSaving; /*!< Specifies DayLight Save Operation.
Kojto 110:165afa46840b 128 This parameter can be a value of @ref RTC_DayLightSaving_Definitions */
Kojto 110:165afa46840b 129
Kojto 110:165afa46840b 130 uint32_t StoreOperation; /*!< Specifies RTC_StoreOperation value to be written in the BCK bit
Kojto 110:165afa46840b 131 in CR register to store the operation.
Kojto 110:165afa46840b 132 This parameter can be a value of @ref RTC_StoreOperation_Definitions */
Kojto 110:165afa46840b 133 }RTC_TimeTypeDef;
Kojto 110:165afa46840b 134
Kojto 110:165afa46840b 135 /**
Kojto 110:165afa46840b 136 * @brief RTC Date structure definition
Kojto 110:165afa46840b 137 */
Kojto 110:165afa46840b 138 typedef struct
Kojto 110:165afa46840b 139 {
Kojto 110:165afa46840b 140 uint8_t WeekDay; /*!< Specifies the RTC Date WeekDay.
Kojto 110:165afa46840b 141 This parameter can be a value of @ref RTC_WeekDay_Definitions */
Kojto 110:165afa46840b 142
Kojto 110:165afa46840b 143 uint8_t Month; /*!< Specifies the RTC Date Month (in BCD format).
Kojto 110:165afa46840b 144 This parameter can be a value of @ref RTC_Month_Date_Definitions */
Kojto 110:165afa46840b 145
Kojto 110:165afa46840b 146 uint8_t Date; /*!< Specifies the RTC Date.
Kojto 110:165afa46840b 147 This parameter must be a number between Min_Data = 1 and Max_Data = 31 */
Kojto 110:165afa46840b 148
Kojto 110:165afa46840b 149 uint8_t Year; /*!< Specifies the RTC Date Year.
Kojto 110:165afa46840b 150 This parameter must be a number between Min_Data = 0 and Max_Data = 99 */
Kojto 110:165afa46840b 151
Kojto 110:165afa46840b 152 }RTC_DateTypeDef;
Kojto 110:165afa46840b 153
Kojto 110:165afa46840b 154 /**
Kojto 110:165afa46840b 155 * @brief RTC Alarm structure definition
Kojto 110:165afa46840b 156 */
Kojto 110:165afa46840b 157 typedef struct
Kojto 110:165afa46840b 158 {
Kojto 110:165afa46840b 159 RTC_TimeTypeDef AlarmTime; /*!< Specifies the RTC Alarm Time members */
Kojto 110:165afa46840b 160
Kojto 110:165afa46840b 161 uint32_t AlarmMask; /*!< Specifies the RTC Alarm Masks.
Kojto 110:165afa46840b 162 This parameter can be a value of @ref RTC_AlarmMask_Definitions */
Kojto 110:165afa46840b 163
Kojto 110:165afa46840b 164 uint32_t AlarmSubSecondMask; /*!< Specifies the RTC Alarm SubSeconds Masks.
Kojto 110:165afa46840b 165 This parameter can be a value of @ref RTC_Alarm_Sub_Seconds_Masks_Definitions */
Kojto 110:165afa46840b 166
Kojto 110:165afa46840b 167 uint32_t AlarmDateWeekDaySel; /*!< Specifies the RTC Alarm is on Date or WeekDay.
Kojto 110:165afa46840b 168 This parameter can be a value of @ref RTC_AlarmDateWeekDay_Definitions */
Kojto 110:165afa46840b 169
Kojto 110:165afa46840b 170 uint8_t AlarmDateWeekDay; /*!< Specifies the RTC Alarm Date/WeekDay.
Kojto 110:165afa46840b 171 If the Alarm Date is selected, this parameter must be set to a value in the 1-31 range.
Kojto 110:165afa46840b 172 If the Alarm WeekDay is selected, this parameter can be a value of @ref RTC_WeekDay_Definitions */
Kojto 110:165afa46840b 173
Kojto 110:165afa46840b 174 uint32_t Alarm; /*!< Specifies the alarm .
Kojto 110:165afa46840b 175 This parameter can be a value of @ref RTC_Alarms_Definitions */
Kojto 110:165afa46840b 176 }RTC_AlarmTypeDef;
Kojto 110:165afa46840b 177
Kojto 110:165afa46840b 178 /**
Kojto 110:165afa46840b 179 * @brief RTC Handle Structure definition
Kojto 110:165afa46840b 180 */
Kojto 110:165afa46840b 181 typedef struct
Kojto 110:165afa46840b 182 {
Kojto 110:165afa46840b 183 RTC_TypeDef *Instance; /*!< Register base address */
Kojto 110:165afa46840b 184
Kojto 110:165afa46840b 185 RTC_InitTypeDef Init; /*!< RTC required parameters */
Kojto 110:165afa46840b 186
Kojto 110:165afa46840b 187 HAL_LockTypeDef Lock; /*!< RTC locking object */
Kojto 110:165afa46840b 188
Kojto 110:165afa46840b 189 __IO HAL_RTCStateTypeDef State; /*!< Time communication state */
Kojto 110:165afa46840b 190
Kojto 110:165afa46840b 191 }RTC_HandleTypeDef;
Kojto 110:165afa46840b 192
Kojto 110:165afa46840b 193 /**
Kojto 110:165afa46840b 194 * @}
Kojto 110:165afa46840b 195 */
Kojto 110:165afa46840b 196
Kojto 110:165afa46840b 197 /* Exported constants --------------------------------------------------------*/
Kojto 110:165afa46840b 198 /** @defgroup RTC_Exported_Constants RTC Exported Constants
Kojto 110:165afa46840b 199 * @{
Kojto 110:165afa46840b 200 */
Kojto 110:165afa46840b 201
Kojto 110:165afa46840b 202 /** @defgroup RTC_Hour_Formats RTC Hour Formats
Kojto 110:165afa46840b 203 * @{
Kojto 110:165afa46840b 204 */
Kojto 110:165afa46840b 205 #define RTC_HOURFORMAT_24 ((uint32_t)0x00000000)
Kojto 110:165afa46840b 206 #define RTC_HOURFORMAT_12 ((uint32_t)0x00000040)
Kojto 110:165afa46840b 207 /**
Kojto 110:165afa46840b 208 * @}
Kojto 110:165afa46840b 209 */
Kojto 110:165afa46840b 210
Kojto 110:165afa46840b 211 /** @defgroup RTC_Output_selection_Definitions RTC Output Selection Definitions
Kojto 110:165afa46840b 212 * @{
Kojto 110:165afa46840b 213 */
Kojto 110:165afa46840b 214 #define RTC_OUTPUT_DISABLE ((uint32_t)0x00000000)
Kojto 110:165afa46840b 215 #define RTC_OUTPUT_ALARMA ((uint32_t)0x00200000)
Kojto 110:165afa46840b 216 #define RTC_OUTPUT_ALARMB ((uint32_t)0x00400000)
Kojto 110:165afa46840b 217 #define RTC_OUTPUT_WAKEUP ((uint32_t)0x00600000)
Kojto 110:165afa46840b 218 /**
Kojto 110:165afa46840b 219 * @}
Kojto 110:165afa46840b 220 */
Kojto 110:165afa46840b 221
Kojto 110:165afa46840b 222 /** @defgroup RTC_Output_Polarity_Definitions RTC Output Polarity Definitions
Kojto 110:165afa46840b 223 * @{
Kojto 110:165afa46840b 224 */
Kojto 110:165afa46840b 225 #define RTC_OUTPUT_POLARITY_HIGH ((uint32_t)0x00000000)
Kojto 110:165afa46840b 226 #define RTC_OUTPUT_POLARITY_LOW ((uint32_t)0x00100000)
Kojto 110:165afa46840b 227 /**
Kojto 110:165afa46840b 228 * @}
Kojto 110:165afa46840b 229 */
Kojto 110:165afa46840b 230
Kojto 110:165afa46840b 231 /** @defgroup RTC_Output_Type_ALARM_OUT RTC Output Type ALARM OUT
Kojto 110:165afa46840b 232 * @{
Kojto 110:165afa46840b 233 */
Kojto 110:165afa46840b 234 #define RTC_OUTPUT_TYPE_OPENDRAIN ((uint32_t)0x00000000)
Kojto 110:165afa46840b 235 #define RTC_OUTPUT_TYPE_PUSHPULL ((uint32_t)0x00040000)
Kojto 110:165afa46840b 236 /**
Kojto 110:165afa46840b 237 * @}
Kojto 110:165afa46840b 238 */
Kojto 110:165afa46840b 239
Kojto 110:165afa46840b 240 /** @defgroup RTC_AM_PM_Definitions RTC AM PM Definitions
Kojto 110:165afa46840b 241 * @{
Kojto 110:165afa46840b 242 */
Kojto 110:165afa46840b 243 #define RTC_HOURFORMAT12_AM ((uint8_t)0x00)
Kojto 110:165afa46840b 244 #define RTC_HOURFORMAT12_PM ((uint8_t)0x40)
Kojto 110:165afa46840b 245 /**
Kojto 110:165afa46840b 246 * @}
Kojto 110:165afa46840b 247 */
Kojto 110:165afa46840b 248
Kojto 110:165afa46840b 249 /** @defgroup RTC_DayLightSaving_Definitions RTC DayLight Saving Definitions
Kojto 110:165afa46840b 250 * @{
Kojto 110:165afa46840b 251 */
Kojto 110:165afa46840b 252 #define RTC_DAYLIGHTSAVING_SUB1H ((uint32_t)0x00020000)
Kojto 110:165afa46840b 253 #define RTC_DAYLIGHTSAVING_ADD1H ((uint32_t)0x00010000)
Kojto 110:165afa46840b 254 #define RTC_DAYLIGHTSAVING_NONE ((uint32_t)0x00000000)
Kojto 110:165afa46840b 255 /**
Kojto 110:165afa46840b 256 * @}
Kojto 110:165afa46840b 257 */
Kojto 110:165afa46840b 258
Kojto 110:165afa46840b 259 /** @defgroup RTC_StoreOperation_Definitions RTC Store Operation Definitions
Kojto 110:165afa46840b 260 * @{
Kojto 110:165afa46840b 261 */
Kojto 110:165afa46840b 262 #define RTC_STOREOPERATION_RESET ((uint32_t)0x00000000)
Kojto 110:165afa46840b 263 #define RTC_STOREOPERATION_SET ((uint32_t)0x00040000)
Kojto 110:165afa46840b 264 /**
Kojto 110:165afa46840b 265 * @}
Kojto 110:165afa46840b 266 */
Kojto 110:165afa46840b 267
Kojto 110:165afa46840b 268 /** @defgroup RTC_Input_parameter_format_definitions RTC Input Parameter Format Definitions
Kojto 110:165afa46840b 269 * @{
Kojto 110:165afa46840b 270 */
Kojto 110:165afa46840b 271 #define RTC_FORMAT_BIN ((uint32_t)0x000000000)
Kojto 110:165afa46840b 272 #define RTC_FORMAT_BCD ((uint32_t)0x000000001)
Kojto 110:165afa46840b 273 /**
Kojto 110:165afa46840b 274 * @}
Kojto 110:165afa46840b 275 */
Kojto 110:165afa46840b 276
Kojto 110:165afa46840b 277 /** @defgroup RTC_Month_Date_Definitions RTC Month Date Definitions
Kojto 110:165afa46840b 278 * @{
Kojto 110:165afa46840b 279 */
Kojto 110:165afa46840b 280 /* Coded in BCD format */
Kojto 110:165afa46840b 281 #define RTC_MONTH_JANUARY ((uint8_t)0x01)
Kojto 110:165afa46840b 282 #define RTC_MONTH_FEBRUARY ((uint8_t)0x02)
Kojto 110:165afa46840b 283 #define RTC_MONTH_MARCH ((uint8_t)0x03)
Kojto 110:165afa46840b 284 #define RTC_MONTH_APRIL ((uint8_t)0x04)
Kojto 110:165afa46840b 285 #define RTC_MONTH_MAY ((uint8_t)0x05)
Kojto 110:165afa46840b 286 #define RTC_MONTH_JUNE ((uint8_t)0x06)
Kojto 110:165afa46840b 287 #define RTC_MONTH_JULY ((uint8_t)0x07)
Kojto 110:165afa46840b 288 #define RTC_MONTH_AUGUST ((uint8_t)0x08)
Kojto 110:165afa46840b 289 #define RTC_MONTH_SEPTEMBER ((uint8_t)0x09)
Kojto 110:165afa46840b 290 #define RTC_MONTH_OCTOBER ((uint8_t)0x10)
Kojto 110:165afa46840b 291 #define RTC_MONTH_NOVEMBER ((uint8_t)0x11)
Kojto 110:165afa46840b 292 #define RTC_MONTH_DECEMBER ((uint8_t)0x12)
Kojto 110:165afa46840b 293 /**
Kojto 110:165afa46840b 294 * @}
Kojto 110:165afa46840b 295 */
Kojto 110:165afa46840b 296
Kojto 110:165afa46840b 297 /** @defgroup RTC_WeekDay_Definitions RTC WeekDay Definitions
Kojto 110:165afa46840b 298 * @{
Kojto 110:165afa46840b 299 */
Kojto 110:165afa46840b 300 #define RTC_WEEKDAY_MONDAY ((uint8_t)0x01)
Kojto 110:165afa46840b 301 #define RTC_WEEKDAY_TUESDAY ((uint8_t)0x02)
Kojto 110:165afa46840b 302 #define RTC_WEEKDAY_WEDNESDAY ((uint8_t)0x03)
Kojto 110:165afa46840b 303 #define RTC_WEEKDAY_THURSDAY ((uint8_t)0x04)
Kojto 110:165afa46840b 304 #define RTC_WEEKDAY_FRIDAY ((uint8_t)0x05)
Kojto 110:165afa46840b 305 #define RTC_WEEKDAY_SATURDAY ((uint8_t)0x06)
Kojto 110:165afa46840b 306 #define RTC_WEEKDAY_SUNDAY ((uint8_t)0x07)
Kojto 110:165afa46840b 307 /**
Kojto 110:165afa46840b 308 * @}
Kojto 110:165afa46840b 309 */
Kojto 110:165afa46840b 310
Kojto 110:165afa46840b 311 /** @defgroup RTC_AlarmDateWeekDay_Definitions RTC Alarm Date WeekDay Definitions
Kojto 110:165afa46840b 312 * @{
Kojto 110:165afa46840b 313 */
Kojto 110:165afa46840b 314 #define RTC_ALARMDATEWEEKDAYSEL_DATE ((uint32_t)0x00000000)
Kojto 110:165afa46840b 315 #define RTC_ALARMDATEWEEKDAYSEL_WEEKDAY ((uint32_t)0x40000000)
Kojto 110:165afa46840b 316 /**
Kojto 110:165afa46840b 317 * @}
Kojto 110:165afa46840b 318 */
Kojto 110:165afa46840b 319
Kojto 110:165afa46840b 320 /** @defgroup RTC_AlarmMask_Definitions RTC Alarm Mask Definitions
Kojto 110:165afa46840b 321 * @{
Kojto 110:165afa46840b 322 */
Kojto 110:165afa46840b 323 #define RTC_ALARMMASK_NONE ((uint32_t)0x00000000)
Kojto 110:165afa46840b 324 #define RTC_ALARMMASK_DATEWEEKDAY RTC_ALRMAR_MSK4
Kojto 110:165afa46840b 325 #define RTC_ALARMMASK_HOURS RTC_ALRMAR_MSK3
Kojto 110:165afa46840b 326 #define RTC_ALARMMASK_MINUTES RTC_ALRMAR_MSK2
Kojto 110:165afa46840b 327 #define RTC_ALARMMASK_SECONDS RTC_ALRMAR_MSK1
Kojto 110:165afa46840b 328 #define RTC_ALARMMASK_ALL ((uint32_t)0x80808080)
Kojto 110:165afa46840b 329 /**
Kojto 110:165afa46840b 330 * @}
Kojto 110:165afa46840b 331 */
Kojto 110:165afa46840b 332
Kojto 110:165afa46840b 333 /** @defgroup RTC_Alarms_Definitions RTC Alarms Definitions
Kojto 110:165afa46840b 334 * @{
Kojto 110:165afa46840b 335 */
Kojto 110:165afa46840b 336 #define RTC_ALARM_A RTC_CR_ALRAE
Kojto 110:165afa46840b 337 #define RTC_ALARM_B RTC_CR_ALRBE
Kojto 110:165afa46840b 338 /**
Kojto 110:165afa46840b 339 * @}
Kojto 110:165afa46840b 340 */
Kojto 110:165afa46840b 341
Kojto 110:165afa46840b 342 /** @defgroup RTC_Alarm_Sub_Seconds_Masks_Definitions RTC Alarm Sub Seconds Masks Definitions
Kojto 110:165afa46840b 343 * @{
Kojto 110:165afa46840b 344 */
Kojto 110:165afa46840b 345 #define RTC_ALARMSUBSECONDMASK_ALL ((uint32_t)0x00000000) /*!< All Alarm SS fields are masked.
Kojto 110:165afa46840b 346 There is no comparison on sub seconds
Kojto 110:165afa46840b 347 for Alarm */
Kojto 110:165afa46840b 348 #define RTC_ALARMSUBSECONDMASK_SS14_1 ((uint32_t)0x01000000) /*!< SS[14:1] are don't care in Alarm
Kojto 110:165afa46840b 349 comparison. Only SS[0] is compared. */
Kojto 110:165afa46840b 350 #define RTC_ALARMSUBSECONDMASK_SS14_2 ((uint32_t)0x02000000) /*!< SS[14:2] are don't care in Alarm
Kojto 110:165afa46840b 351 comparison. Only SS[1:0] are compared */
Kojto 110:165afa46840b 352 #define RTC_ALARMSUBSECONDMASK_SS14_3 ((uint32_t)0x03000000) /*!< SS[14:3] are don't care in Alarm
Kojto 110:165afa46840b 353 comparison. Only SS[2:0] are compared */
Kojto 110:165afa46840b 354 #define RTC_ALARMSUBSECONDMASK_SS14_4 ((uint32_t)0x04000000) /*!< SS[14:4] are don't care in Alarm
Kojto 110:165afa46840b 355 comparison. Only SS[3:0] are compared */
Kojto 110:165afa46840b 356 #define RTC_ALARMSUBSECONDMASK_SS14_5 ((uint32_t)0x05000000) /*!< SS[14:5] are don't care in Alarm
Kojto 110:165afa46840b 357 comparison. Only SS[4:0] are compared */
Kojto 110:165afa46840b 358 #define RTC_ALARMSUBSECONDMASK_SS14_6 ((uint32_t)0x06000000) /*!< SS[14:6] are don't care in Alarm
Kojto 110:165afa46840b 359 comparison. Only SS[5:0] are compared */
Kojto 110:165afa46840b 360 #define RTC_ALARMSUBSECONDMASK_SS14_7 ((uint32_t)0x07000000) /*!< SS[14:7] are don't care in Alarm
Kojto 110:165afa46840b 361 comparison. Only SS[6:0] are compared */
Kojto 110:165afa46840b 362 #define RTC_ALARMSUBSECONDMASK_SS14_8 ((uint32_t)0x08000000) /*!< SS[14:8] are don't care in Alarm
Kojto 110:165afa46840b 363 comparison. Only SS[7:0] are compared */
Kojto 110:165afa46840b 364 #define RTC_ALARMSUBSECONDMASK_SS14_9 ((uint32_t)0x09000000) /*!< SS[14:9] are don't care in Alarm
Kojto 110:165afa46840b 365 comparison. Only SS[8:0] are compared */
Kojto 110:165afa46840b 366 #define RTC_ALARMSUBSECONDMASK_SS14_10 ((uint32_t)0x0A000000) /*!< SS[14:10] are don't care in Alarm
Kojto 110:165afa46840b 367 comparison. Only SS[9:0] are compared */
Kojto 110:165afa46840b 368 #define RTC_ALARMSUBSECONDMASK_SS14_11 ((uint32_t)0x0B000000) /*!< SS[14:11] are don't care in Alarm
Kojto 110:165afa46840b 369 comparison. Only SS[10:0] are compared */
Kojto 110:165afa46840b 370 #define RTC_ALARMSUBSECONDMASK_SS14_12 ((uint32_t)0x0C000000) /*!< SS[14:12] are don't care in Alarm
Kojto 110:165afa46840b 371 comparison.Only SS[11:0] are compared */
Kojto 110:165afa46840b 372 #define RTC_ALARMSUBSECONDMASK_SS14_13 ((uint32_t)0x0D000000) /*!< SS[14:13] are don't care in Alarm
Kojto 110:165afa46840b 373 comparison. Only SS[12:0] are compared */
Kojto 110:165afa46840b 374 #define RTC_ALARMSUBSECONDMASK_SS14 ((uint32_t)0x0E000000) /*!< SS[14] is don't care in Alarm
Kojto 110:165afa46840b 375 comparison.Only SS[13:0] are compared */
Kojto 110:165afa46840b 376 #define RTC_ALARMSUBSECONDMASK_NONE ((uint32_t)0x0F000000) /*!< SS[14:0] are compared and must match
Kojto 110:165afa46840b 377 to activate alarm. */
Kojto 110:165afa46840b 378 /**
Kojto 110:165afa46840b 379 * @}
Kojto 110:165afa46840b 380 */
Kojto 110:165afa46840b 381
Kojto 110:165afa46840b 382 /** @defgroup RTC_Interrupts_Definitions RTC Interrupts Definitions
Kojto 110:165afa46840b 383 * @{
Kojto 110:165afa46840b 384 */
Kojto 110:165afa46840b 385 #define RTC_IT_TS ((uint32_t)0x00008000)
Kojto 110:165afa46840b 386 #define RTC_IT_WUT ((uint32_t)0x00004000)
Kojto 110:165afa46840b 387 #define RTC_IT_ALRB ((uint32_t)0x00002000)
Kojto 110:165afa46840b 388 #define RTC_IT_ALRA ((uint32_t)0x00001000)
Kojto 110:165afa46840b 389 #define RTC_IT_TAMP ((uint32_t)0x00000004) /* Used only to Enable the Tamper Interrupt */
Kojto 110:165afa46840b 390 #define RTC_IT_TAMP1 ((uint32_t)0x00020000)
Kojto 110:165afa46840b 391 #define RTC_IT_TAMP2 ((uint32_t)0x00040000)
Kojto 110:165afa46840b 392 /**
Kojto 110:165afa46840b 393 * @}
Kojto 110:165afa46840b 394 */
Kojto 110:165afa46840b 395
Kojto 110:165afa46840b 396 /** @defgroup RTC_Flags_Definitions RTC Flags Definitions
Kojto 110:165afa46840b 397 * @{
Kojto 110:165afa46840b 398 */
Kojto 110:165afa46840b 399 #define RTC_FLAG_RECALPF ((uint32_t)0x00010000)
Kojto 110:165afa46840b 400 #define RTC_FLAG_TAMP2F ((uint32_t)0x00004000)
Kojto 110:165afa46840b 401 #define RTC_FLAG_TAMP1F ((uint32_t)0x00002000)
Kojto 110:165afa46840b 402 #define RTC_FLAG_TSOVF ((uint32_t)0x00001000)
Kojto 110:165afa46840b 403 #define RTC_FLAG_TSF ((uint32_t)0x00000800)
Kojto 110:165afa46840b 404 #define RTC_FLAG_WUTF ((uint32_t)0x00000400)
Kojto 110:165afa46840b 405 #define RTC_FLAG_ALRBF ((uint32_t)0x00000200)
Kojto 110:165afa46840b 406 #define RTC_FLAG_ALRAF ((uint32_t)0x00000100)
Kojto 110:165afa46840b 407 #define RTC_FLAG_INITF ((uint32_t)0x00000040)
Kojto 110:165afa46840b 408 #define RTC_FLAG_RSF ((uint32_t)0x00000020)
Kojto 110:165afa46840b 409 #define RTC_FLAG_INITS ((uint32_t)0x00000010)
Kojto 110:165afa46840b 410 #define RTC_FLAG_SHPF ((uint32_t)0x00000008)
Kojto 110:165afa46840b 411 #define RTC_FLAG_WUTWF ((uint32_t)0x00000004)
Kojto 110:165afa46840b 412 #define RTC_FLAG_ALRBWF ((uint32_t)0x00000002)
Kojto 110:165afa46840b 413 #define RTC_FLAG_ALRAWF ((uint32_t)0x00000001)
Kojto 110:165afa46840b 414 /**
Kojto 110:165afa46840b 415 * @}
Kojto 110:165afa46840b 416 */
Kojto 110:165afa46840b 417
Kojto 110:165afa46840b 418 /**
Kojto 110:165afa46840b 419 * @}
Kojto 110:165afa46840b 420 */
Kojto 110:165afa46840b 421
Kojto 110:165afa46840b 422 /* Exported macro ------------------------------------------------------------*/
Kojto 110:165afa46840b 423 /** @defgroup RTC_Exported_Macros RTC Exported Macros
Kojto 110:165afa46840b 424 * @{
Kojto 110:165afa46840b 425 */
Kojto 110:165afa46840b 426
Kojto 110:165afa46840b 427 /** @brief Reset RTC handle state
Kojto 110:165afa46840b 428 * @param __HANDLE__: specifies the RTC handle.
Kojto 110:165afa46840b 429 * @retval None
Kojto 110:165afa46840b 430 */
Kojto 110:165afa46840b 431 #define __HAL_RTC_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_RTC_STATE_RESET)
Kojto 110:165afa46840b 432
Kojto 110:165afa46840b 433 /**
Kojto 110:165afa46840b 434 * @brief Disable the write protection for RTC registers.
Kojto 110:165afa46840b 435 * @param __HANDLE__: specifies the RTC handle.
Kojto 110:165afa46840b 436 * @retval None
Kojto 110:165afa46840b 437 */
Kojto 110:165afa46840b 438 #define __HAL_RTC_WRITEPROTECTION_DISABLE(__HANDLE__) \
Kojto 110:165afa46840b 439 do{ \
Kojto 110:165afa46840b 440 (__HANDLE__)->Instance->WPR = 0xCA; \
Kojto 110:165afa46840b 441 (__HANDLE__)->Instance->WPR = 0x53; \
Kojto 110:165afa46840b 442 } while(0)
Kojto 110:165afa46840b 443
Kojto 110:165afa46840b 444 /**
Kojto 110:165afa46840b 445 * @brief Enable the write protection for RTC registers.
Kojto 110:165afa46840b 446 * @param __HANDLE__: specifies the RTC handle.
Kojto 110:165afa46840b 447 * @retval None
Kojto 110:165afa46840b 448 */
Kojto 110:165afa46840b 449 #define __HAL_RTC_WRITEPROTECTION_ENABLE(__HANDLE__) \
Kojto 110:165afa46840b 450 do{ \
Kojto 110:165afa46840b 451 (__HANDLE__)->Instance->WPR = 0xFF; \
Kojto 110:165afa46840b 452 } while(0)
Kojto 110:165afa46840b 453
Kojto 110:165afa46840b 454 /**
Kojto 110:165afa46840b 455 * @brief Enable the RTC ALARMA peripheral.
Kojto 110:165afa46840b 456 * @param __HANDLE__: specifies the RTC handle.
Kojto 110:165afa46840b 457 * @retval None
Kojto 110:165afa46840b 458 */
Kojto 110:165afa46840b 459 #define __HAL_RTC_ALARMA_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR |= (RTC_CR_ALRAE))
Kojto 110:165afa46840b 460
Kojto 110:165afa46840b 461 /**
Kojto 110:165afa46840b 462 * @brief Disable the RTC ALARMA peripheral.
Kojto 110:165afa46840b 463 * @param __HANDLE__: specifies the RTC handle.
Kojto 110:165afa46840b 464 * @retval None
Kojto 110:165afa46840b 465 */
Kojto 110:165afa46840b 466 #define __HAL_RTC_ALARMA_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR &= ~(RTC_CR_ALRAE))
Kojto 110:165afa46840b 467
Kojto 110:165afa46840b 468 /**
Kojto 110:165afa46840b 469 * @brief Enable the RTC ALARMB peripheral.
Kojto 110:165afa46840b 470 * @param __HANDLE__: specifies the RTC handle.
Kojto 110:165afa46840b 471 * @retval None
Kojto 110:165afa46840b 472 */
Kojto 110:165afa46840b 473 #define __HAL_RTC_ALARMB_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR |= (RTC_CR_ALRBE))
Kojto 110:165afa46840b 474
Kojto 110:165afa46840b 475 /**
Kojto 110:165afa46840b 476 * @brief Disable the RTC ALARMB peripheral.
Kojto 110:165afa46840b 477 * @param __HANDLE__: specifies the RTC handle.
Kojto 110:165afa46840b 478 * @retval None
Kojto 110:165afa46840b 479 */
Kojto 110:165afa46840b 480 #define __HAL_RTC_ALARMB_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR &= ~(RTC_CR_ALRBE))
Kojto 110:165afa46840b 481
Kojto 110:165afa46840b 482 /**
Kojto 110:165afa46840b 483 * @brief Enable the RTC Alarm interrupt.
Kojto 110:165afa46840b 484 * @param __HANDLE__: specifies the RTC handle.
Kojto 110:165afa46840b 485 * @param __INTERRUPT__: specifies the RTC Alarm interrupt sources to be enabled or disabled.
Kojto 110:165afa46840b 486 * This parameter can be any combination of the following values:
Kojto 110:165afa46840b 487 * @arg RTC_IT_ALRA: Alarm A interrupt
Kojto 110:165afa46840b 488 * @arg RTC_IT_ALRB: Alarm B interrupt
Kojto 110:165afa46840b 489 * @retval None
Kojto 110:165afa46840b 490 */
Kojto 110:165afa46840b 491 #define __HAL_RTC_ALARM_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR |= (__INTERRUPT__))
Kojto 110:165afa46840b 492
Kojto 110:165afa46840b 493 /**
Kojto 110:165afa46840b 494 * @brief Disable the RTC Alarm interrupt.
Kojto 110:165afa46840b 495 * @param __HANDLE__: specifies the RTC handle.
Kojto 110:165afa46840b 496 * @param __INTERRUPT__: specifies the RTC Alarm interrupt sources to be enabled or disabled.
Kojto 110:165afa46840b 497 * This parameter can be any combination of the following values:
Kojto 110:165afa46840b 498 * @arg RTC_IT_ALRA: Alarm A interrupt
Kojto 110:165afa46840b 499 * @arg RTC_IT_ALRB: Alarm B interrupt
Kojto 110:165afa46840b 500 * @retval None
Kojto 110:165afa46840b 501 */
Kojto 110:165afa46840b 502 #define __HAL_RTC_ALARM_DISABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR &= ~(__INTERRUPT__))
Kojto 110:165afa46840b 503
Kojto 110:165afa46840b 504 /**
Kojto 110:165afa46840b 505 * @brief Check whether the specified RTC Alarm interrupt has occurred or not.
Kojto 110:165afa46840b 506 * @param __HANDLE__: specifies the RTC handle.
Kojto 110:165afa46840b 507 * @param __INTERRUPT__: specifies the RTC Alarm interrupt to check.
Kojto 110:165afa46840b 508 * This parameter can be:
Kojto 110:165afa46840b 509 * @arg RTC_IT_ALRA: Alarm A interrupt
Kojto 110:165afa46840b 510 * @arg RTC_IT_ALRB: Alarm B interrupt
Kojto 110:165afa46840b 511 * @retval None
Kojto 110:165afa46840b 512 */
Kojto 110:165afa46840b 513 #define __HAL_RTC_ALARM_GET_IT(__HANDLE__, __INTERRUPT__) (((((__HANDLE__)->Instance->ISR)& ((__INTERRUPT__)>> 4)) != RESET)? SET : RESET)
Kojto 110:165afa46840b 514
Kojto 110:165afa46840b 515 /**
Kojto 110:165afa46840b 516 * @brief Get the selected RTC Alarm's flag status.
Kojto 110:165afa46840b 517 * @param __HANDLE__: specifies the RTC handle.
Kojto 110:165afa46840b 518 * @param __FLAG__: specifies the RTC Alarm Flag to check.
Kojto 110:165afa46840b 519 * This parameter can be:
Kojto 110:165afa46840b 520 * @arg RTC_FLAG_ALRAF
Kojto 110:165afa46840b 521 * @arg RTC_FLAG_ALRBF
Kojto 110:165afa46840b 522 * @arg RTC_FLAG_ALRAWF
Kojto 110:165afa46840b 523 * @arg RTC_FLAG_ALRBWF
Kojto 110:165afa46840b 524 * @retval None
Kojto 110:165afa46840b 525 */
Kojto 110:165afa46840b 526 #define __HAL_RTC_ALARM_GET_FLAG(__HANDLE__, __FLAG__) (((((__HANDLE__)->Instance->ISR) & (__FLAG__)) != RESET)? SET : RESET)
Kojto 110:165afa46840b 527
Kojto 110:165afa46840b 528 /**
Kojto 110:165afa46840b 529 * @brief Clear the RTC Alarm's pending flags.
Kojto 110:165afa46840b 530 * @param __HANDLE__: specifies the RTC handle.
Kojto 110:165afa46840b 531 * @param __FLAG__: specifies the RTC Alarm Flag sources to be enabled or disabled.
Kojto 110:165afa46840b 532 * This parameter can be:
Kojto 110:165afa46840b 533 * @arg RTC_FLAG_ALRAF
Kojto 110:165afa46840b 534 * @arg RTC_FLAG_ALRBF
Kojto 110:165afa46840b 535 * @retval None
Kojto 110:165afa46840b 536 */
Kojto 110:165afa46840b 537 #define __HAL_RTC_ALARM_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->ISR) = (~((__FLAG__) | RTC_ISR_INIT)|((__HANDLE__)->Instance->ISR & RTC_ISR_INIT))
Kojto 110:165afa46840b 538
Kojto 110:165afa46840b 539
Kojto 110:165afa46840b 540 /**
Kojto 110:165afa46840b 541 * @brief Check whether the specified RTC Alarm interrupt has been enabled or not.
Kojto 110:165afa46840b 542 * @param __HANDLE__: specifies the RTC handle.
Kojto 110:165afa46840b 543 * @param __INTERRUPT__: specifies the RTC Alarm interrupt sources to check.
Kojto 110:165afa46840b 544 * This parameter can be:
Kojto 110:165afa46840b 545 * @arg RTC_IT_ALRA: Alarm A interrupt
Kojto 110:165afa46840b 546 * @arg RTC_IT_ALRB: Alarm B interrupt
Kojto 110:165afa46840b 547 * @retval None
Kojto 110:165afa46840b 548 */
Kojto 110:165afa46840b 549 #define __HAL_RTC_ALARM_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) (((((__HANDLE__)->Instance->CR) & (__INTERRUPT__)) != RESET) ? SET : RESET)
Kojto 110:165afa46840b 550
Kojto 110:165afa46840b 551 /**
Kojto 110:165afa46840b 552 * @brief Enable interrupt on the RTC Alarm associated Exti line.
Kojto 110:165afa46840b 553 * @retval None
Kojto 110:165afa46840b 554 */
Kojto 110:165afa46840b 555 #define __HAL_RTC_ALARM_EXTI_ENABLE_IT() (EXTI->IMR |= RTC_EXTI_LINE_ALARM_EVENT)
Kojto 110:165afa46840b 556
Kojto 110:165afa46840b 557 /**
Kojto 110:165afa46840b 558 * @brief Disable interrupt on the RTC Alarm associated Exti line.
Kojto 110:165afa46840b 559 * @retval None
Kojto 110:165afa46840b 560 */
Kojto 110:165afa46840b 561 #define __HAL_RTC_ALARM_EXTI_DISABLE_IT() (EXTI->IMR &= ~(RTC_EXTI_LINE_ALARM_EVENT))
Kojto 110:165afa46840b 562
Kojto 110:165afa46840b 563 /**
Kojto 110:165afa46840b 564 * @brief Enable event on the RTC Alarm associated Exti line.
Kojto 110:165afa46840b 565 * @retval None.
Kojto 110:165afa46840b 566 */
Kojto 110:165afa46840b 567 #define __HAL_RTC_ALARM_EXTI_ENABLE_EVENT() (EXTI->EMR |= RTC_EXTI_LINE_ALARM_EVENT)
Kojto 110:165afa46840b 568
Kojto 110:165afa46840b 569 /**
Kojto 110:165afa46840b 570 * @brief Disable event on the RTC Alarm associated Exti line.
Kojto 110:165afa46840b 571 * @retval None.
Kojto 110:165afa46840b 572 */
Kojto 110:165afa46840b 573 #define __HAL_RTC_ALARM_EXTI_DISABLE_EVENT() (EXTI->EMR &= ~(RTC_EXTI_LINE_ALARM_EVENT))
Kojto 110:165afa46840b 574
Kojto 110:165afa46840b 575 /**
Kojto 110:165afa46840b 576 * @brief Enable falling edge trigger on the RTC Alarm associated Exti line.
Kojto 110:165afa46840b 577 * @retval None.
Kojto 110:165afa46840b 578 */
Kojto 110:165afa46840b 579 #define __HAL_RTC_ALARM_EXTI_ENABLE_FALLING_EDGE() (EXTI->FTSR |= RTC_EXTI_LINE_ALARM_EVENT)
Kojto 110:165afa46840b 580
Kojto 110:165afa46840b 581 /**
Kojto 110:165afa46840b 582 * @brief Disable falling edge trigger on the RTC Alarm associated Exti line.
Kojto 110:165afa46840b 583 * @retval None.
Kojto 110:165afa46840b 584 */
Kojto 110:165afa46840b 585 #define __HAL_RTC_ALARM_EXTI_DISABLE_FALLING_EDGE() (EXTI->FTSR &= ~(RTC_EXTI_LINE_ALARM_EVENT))
Kojto 110:165afa46840b 586
Kojto 110:165afa46840b 587 /**
Kojto 110:165afa46840b 588 * @brief Enable rising edge trigger on the RTC Alarm associated Exti line.
Kojto 110:165afa46840b 589 * @retval None.
Kojto 110:165afa46840b 590 */
Kojto 110:165afa46840b 591 #define __HAL_RTC_ALARM_EXTI_ENABLE_RISING_EDGE() (EXTI->RTSR |= RTC_EXTI_LINE_ALARM_EVENT)
Kojto 110:165afa46840b 592
Kojto 110:165afa46840b 593 /**
Kojto 110:165afa46840b 594 * @brief Disable rising edge trigger on the RTC Alarm associated Exti line.
Kojto 110:165afa46840b 595 * @retval None.
Kojto 110:165afa46840b 596 */
Kojto 110:165afa46840b 597 #define __HAL_RTC_ALARM_EXTI_DISABLE_RISING_EDGE() (EXTI->RTSR &= ~(RTC_EXTI_LINE_ALARM_EVENT))
Kojto 110:165afa46840b 598
Kojto 110:165afa46840b 599 /**
Kojto 110:165afa46840b 600 * @brief Enable rising & falling edge trigger on the RTC Alarm associated Exti line.
Kojto 110:165afa46840b 601 * @retval None.
Kojto 110:165afa46840b 602 */
Kojto 110:165afa46840b 603 #define __HAL_RTC_ALARM_EXTI_ENABLE_RISING_FALLING_EDGE() __HAL_RTC_ALARM_EXTI_ENABLE_RISING_EDGE();__HAL_RTC_ALARM_EXTI_ENABLE_FALLING_EDGE();
Kojto 110:165afa46840b 604
Kojto 110:165afa46840b 605 /**
Kojto 110:165afa46840b 606 * @brief Disable rising & falling edge trigger on the RTC Alarm associated Exti line.
Kojto 110:165afa46840b 607 * @retval None.
Kojto 110:165afa46840b 608 */
Kojto 110:165afa46840b 609 #define __HAL_RTC_ALARM_EXTI_DISABLE_RISING_FALLING_EDGE() __HAL_RTC_ALARM_EXTI_DISABLE_RISING_EDGE();__HAL_RTC_ALARM_EXTI_DISABLE_FALLING_EDGE();
Kojto 110:165afa46840b 610
Kojto 110:165afa46840b 611 /**
Kojto 110:165afa46840b 612 * @brief Check whether the RTC Alarm associated Exti line interrupt flag is set or not.
Kojto 110:165afa46840b 613 * @retval Line Status.
Kojto 110:165afa46840b 614 */
Kojto 110:165afa46840b 615 #define __HAL_RTC_ALARM_EXTI_GET_FLAG() (EXTI->PR & RTC_EXTI_LINE_ALARM_EVENT)
Kojto 110:165afa46840b 616
Kojto 110:165afa46840b 617 /**
Kojto 110:165afa46840b 618 * @brief Clear the RTC Alarm associated Exti line flag.
Kojto 110:165afa46840b 619 * @retval None.
Kojto 110:165afa46840b 620 */
Kojto 110:165afa46840b 621 #define __HAL_RTC_ALARM_EXTI_CLEAR_FLAG() (EXTI->PR = RTC_EXTI_LINE_ALARM_EVENT)
Kojto 110:165afa46840b 622
Kojto 110:165afa46840b 623 /**
Kojto 110:165afa46840b 624 * @brief Generate a Software interrupt on RTC Alarm associated Exti line.
Kojto 110:165afa46840b 625 * @retval None.
Kojto 110:165afa46840b 626 */
Kojto 110:165afa46840b 627 #define __HAL_RTC_ALARM_EXTI_GENERATE_SWIT() (EXTI->SWIER |= RTC_EXTI_LINE_ALARM_EVENT)
Kojto 110:165afa46840b 628 /**
Kojto 110:165afa46840b 629 * @}
Kojto 110:165afa46840b 630 */
Kojto 110:165afa46840b 631
Kojto 110:165afa46840b 632 /* Include RTC HAL Extension module */
Kojto 110:165afa46840b 633 #include "stm32f4xx_hal_rtc_ex.h"
Kojto 110:165afa46840b 634
Kojto 110:165afa46840b 635 /* Exported functions --------------------------------------------------------*/
Kojto 110:165afa46840b 636 /** @addtogroup RTC_Exported_Functions
Kojto 110:165afa46840b 637 * @{
Kojto 110:165afa46840b 638 */
Kojto 110:165afa46840b 639
Kojto 110:165afa46840b 640 /** @addtogroup RTC_Exported_Functions_Group1
Kojto 110:165afa46840b 641 * @{
Kojto 110:165afa46840b 642 */
Kojto 110:165afa46840b 643 /* Initialization and de-initialization functions ****************************/
Kojto 110:165afa46840b 644 HAL_StatusTypeDef HAL_RTC_Init(RTC_HandleTypeDef *hrtc);
Kojto 110:165afa46840b 645 HAL_StatusTypeDef HAL_RTC_DeInit(RTC_HandleTypeDef *hrtc);
Kojto 110:165afa46840b 646 void HAL_RTC_MspInit(RTC_HandleTypeDef *hrtc);
Kojto 110:165afa46840b 647 void HAL_RTC_MspDeInit(RTC_HandleTypeDef *hrtc);
Kojto 110:165afa46840b 648 /**
Kojto 110:165afa46840b 649 * @}
Kojto 110:165afa46840b 650 */
Kojto 110:165afa46840b 651
Kojto 110:165afa46840b 652 /** @addtogroup RTC_Exported_Functions_Group2
Kojto 110:165afa46840b 653 * @{
Kojto 110:165afa46840b 654 */
Kojto 110:165afa46840b 655 /* RTC Time and Date functions ************************************************/
Kojto 110:165afa46840b 656 HAL_StatusTypeDef HAL_RTC_SetTime(RTC_HandleTypeDef *hrtc, RTC_TimeTypeDef *sTime, uint32_t Format);
Kojto 110:165afa46840b 657 HAL_StatusTypeDef HAL_RTC_GetTime(RTC_HandleTypeDef *hrtc, RTC_TimeTypeDef *sTime, uint32_t Format);
Kojto 110:165afa46840b 658 HAL_StatusTypeDef HAL_RTC_SetDate(RTC_HandleTypeDef *hrtc, RTC_DateTypeDef *sDate, uint32_t Format);
Kojto 110:165afa46840b 659 HAL_StatusTypeDef HAL_RTC_GetDate(RTC_HandleTypeDef *hrtc, RTC_DateTypeDef *sDate, uint32_t Format);
Kojto 110:165afa46840b 660 /**
Kojto 110:165afa46840b 661 * @}
Kojto 110:165afa46840b 662 */
Kojto 110:165afa46840b 663
Kojto 110:165afa46840b 664 /** @addtogroup RTC_Exported_Functions_Group3
Kojto 110:165afa46840b 665 * @{
Kojto 110:165afa46840b 666 */
Kojto 110:165afa46840b 667 /* RTC Alarm functions ********************************************************/
Kojto 110:165afa46840b 668 HAL_StatusTypeDef HAL_RTC_SetAlarm(RTC_HandleTypeDef *hrtc, RTC_AlarmTypeDef *sAlarm, uint32_t Format);
Kojto 110:165afa46840b 669 HAL_StatusTypeDef HAL_RTC_SetAlarm_IT(RTC_HandleTypeDef *hrtc, RTC_AlarmTypeDef *sAlarm, uint32_t Format);
Kojto 110:165afa46840b 670 HAL_StatusTypeDef HAL_RTC_DeactivateAlarm(RTC_HandleTypeDef *hrtc, uint32_t Alarm);
Kojto 110:165afa46840b 671 HAL_StatusTypeDef HAL_RTC_GetAlarm(RTC_HandleTypeDef *hrtc, RTC_AlarmTypeDef *sAlarm, uint32_t Alarm, uint32_t Format);
Kojto 110:165afa46840b 672 void HAL_RTC_AlarmIRQHandler(RTC_HandleTypeDef *hrtc);
Kojto 110:165afa46840b 673 HAL_StatusTypeDef HAL_RTC_PollForAlarmAEvent(RTC_HandleTypeDef *hrtc, uint32_t Timeout);
Kojto 110:165afa46840b 674 void HAL_RTC_AlarmAEventCallback(RTC_HandleTypeDef *hrtc);
Kojto 110:165afa46840b 675 /**
Kojto 110:165afa46840b 676 * @}
Kojto 110:165afa46840b 677 */
Kojto 110:165afa46840b 678
Kojto 110:165afa46840b 679 /** @addtogroup RTC_Exported_Functions_Group4
Kojto 110:165afa46840b 680 * @{
Kojto 110:165afa46840b 681 */
Kojto 110:165afa46840b 682 /* Peripheral Control functions ***********************************************/
Kojto 110:165afa46840b 683 HAL_StatusTypeDef HAL_RTC_WaitForSynchro(RTC_HandleTypeDef* hrtc);
Kojto 110:165afa46840b 684 /**
Kojto 110:165afa46840b 685 * @}
Kojto 110:165afa46840b 686 */
Kojto 110:165afa46840b 687
Kojto 110:165afa46840b 688 /** @addtogroup RTC_Exported_Functions_Group5
Kojto 110:165afa46840b 689 * @{
Kojto 110:165afa46840b 690 */
Kojto 110:165afa46840b 691 /* Peripheral State functions *************************************************/
Kojto 110:165afa46840b 692 HAL_RTCStateTypeDef HAL_RTC_GetState(RTC_HandleTypeDef *hrtc);
Kojto 110:165afa46840b 693 /**
Kojto 110:165afa46840b 694 * @}
Kojto 110:165afa46840b 695 */
Kojto 110:165afa46840b 696
Kojto 110:165afa46840b 697 /**
Kojto 110:165afa46840b 698 * @}
Kojto 110:165afa46840b 699 */
Kojto 110:165afa46840b 700
Kojto 110:165afa46840b 701 /* Private types -------------------------------------------------------------*/
Kojto 110:165afa46840b 702 /* Private variables ---------------------------------------------------------*/
Kojto 110:165afa46840b 703 /* Private constants ---------------------------------------------------------*/
Kojto 110:165afa46840b 704 /** @defgroup RTC_Private_Constants RTC Private Constants
Kojto 110:165afa46840b 705 * @{
Kojto 110:165afa46840b 706 */
Kojto 110:165afa46840b 707 /* Masks Definition */
Kojto 110:165afa46840b 708 #define RTC_TR_RESERVED_MASK ((uint32_t)0x007F7F7F)
Kojto 110:165afa46840b 709 #define RTC_DR_RESERVED_MASK ((uint32_t)0x00FFFF3F)
Kojto 110:165afa46840b 710 #define RTC_INIT_MASK ((uint32_t)0xFFFFFFFF)
Kojto 110:165afa46840b 711 #define RTC_RSF_MASK ((uint32_t)0xFFFFFF5F)
Kojto 110:165afa46840b 712 #define RTC_FLAGS_MASK ((uint32_t)(RTC_FLAG_TSOVF | RTC_FLAG_TSF | RTC_FLAG_WUTF | \
Kojto 110:165afa46840b 713 RTC_FLAG_ALRBF | RTC_FLAG_ALRAF | RTC_FLAG_INITF | \
Kojto 110:165afa46840b 714 RTC_FLAG_RSF | RTC_FLAG_INITS | RTC_FLAG_WUTWF | \
Kojto 110:165afa46840b 715 RTC_FLAG_ALRBWF | RTC_FLAG_ALRAWF | RTC_FLAG_TAMP1F | \
Kojto 110:165afa46840b 716 RTC_FLAG_RECALPF | RTC_FLAG_SHPF))
Kojto 110:165afa46840b 717
Kojto 110:165afa46840b 718 #define RTC_TIMEOUT_VALUE 1000
Kojto 110:165afa46840b 719
Kojto 110:165afa46840b 720 #define RTC_EXTI_LINE_ALARM_EVENT ((uint32_t)EXTI_IMR_MR17) /*!< External interrupt line 17 Connected to the RTC Alarm event */
Kojto 110:165afa46840b 721 /**
Kojto 110:165afa46840b 722 * @}
Kojto 110:165afa46840b 723 */
Kojto 110:165afa46840b 724
Kojto 110:165afa46840b 725 /* Private macros ------------------------------------------------------------*/
Kojto 110:165afa46840b 726 /** @defgroup RTC_Private_Macros RTC Private Macros
Kojto 110:165afa46840b 727 * @{
Kojto 110:165afa46840b 728 */
Kojto 110:165afa46840b 729
Kojto 110:165afa46840b 730 /** @defgroup RTC_IS_RTC_Definitions RTC Private macros to check input parameters
Kojto 110:165afa46840b 731 * @{
Kojto 110:165afa46840b 732 */
Kojto 110:165afa46840b 733 #define IS_RTC_HOUR_FORMAT(FORMAT) (((FORMAT) == RTC_HOURFORMAT_12) || \
Kojto 110:165afa46840b 734 ((FORMAT) == RTC_HOURFORMAT_24))
Kojto 110:165afa46840b 735 #define IS_RTC_OUTPUT(OUTPUT) (((OUTPUT) == RTC_OUTPUT_DISABLE) || \
Kojto 110:165afa46840b 736 ((OUTPUT) == RTC_OUTPUT_ALARMA) || \
Kojto 110:165afa46840b 737 ((OUTPUT) == RTC_OUTPUT_ALARMB) || \
Kojto 110:165afa46840b 738 ((OUTPUT) == RTC_OUTPUT_WAKEUP))
Kojto 110:165afa46840b 739 #define IS_RTC_OUTPUT_POL(POL) (((POL) == RTC_OUTPUT_POLARITY_HIGH) || \
Kojto 110:165afa46840b 740 ((POL) == RTC_OUTPUT_POLARITY_LOW))
Kojto 110:165afa46840b 741 #define IS_RTC_OUTPUT_TYPE(TYPE) (((TYPE) == RTC_OUTPUT_TYPE_OPENDRAIN) || \
Kojto 110:165afa46840b 742 ((TYPE) == RTC_OUTPUT_TYPE_PUSHPULL))
Kojto 110:165afa46840b 743 #define IS_RTC_HOUR12(HOUR) (((HOUR) > (uint32_t)0) && ((HOUR) <= (uint32_t)12))
Kojto 110:165afa46840b 744 #define IS_RTC_HOUR24(HOUR) ((HOUR) <= (uint32_t)23)
Kojto 110:165afa46840b 745 #define IS_RTC_ASYNCH_PREDIV(PREDIV) ((PREDIV) <= (uint32_t)0x7F)
Kojto 110:165afa46840b 746 #define IS_RTC_SYNCH_PREDIV(PREDIV) ((PREDIV) <= (uint32_t)0x7FFF)
Kojto 110:165afa46840b 747 #define IS_RTC_MINUTES(MINUTES) ((MINUTES) <= (uint32_t)59)
Kojto 110:165afa46840b 748 #define IS_RTC_SECONDS(SECONDS) ((SECONDS) <= (uint32_t)59)
Kojto 110:165afa46840b 749
Kojto 110:165afa46840b 750 #define IS_RTC_HOURFORMAT12(PM) (((PM) == RTC_HOURFORMAT12_AM) || ((PM) == RTC_HOURFORMAT12_PM))
Kojto 110:165afa46840b 751 #define IS_RTC_DAYLIGHT_SAVING(SAVE) (((SAVE) == RTC_DAYLIGHTSAVING_SUB1H) || \
Kojto 110:165afa46840b 752 ((SAVE) == RTC_DAYLIGHTSAVING_ADD1H) || \
Kojto 110:165afa46840b 753 ((SAVE) == RTC_DAYLIGHTSAVING_NONE))
Kojto 110:165afa46840b 754 #define IS_RTC_STORE_OPERATION(OPERATION) (((OPERATION) == RTC_STOREOPERATION_RESET) || \
Kojto 110:165afa46840b 755 ((OPERATION) == RTC_STOREOPERATION_SET))
Kojto 110:165afa46840b 756 #define IS_RTC_FORMAT(FORMAT) (((FORMAT) == RTC_FORMAT_BIN) || ((FORMAT) == RTC_FORMAT_BCD))
Kojto 110:165afa46840b 757 #define IS_RTC_YEAR(YEAR) ((YEAR) <= (uint32_t)99)
Kojto 110:165afa46840b 758 #define IS_RTC_MONTH(MONTH) (((MONTH) >= (uint32_t)1) && ((MONTH) <= (uint32_t)12))
Kojto 110:165afa46840b 759 #define IS_RTC_DATE(DATE) (((DATE) >= (uint32_t)1) && ((DATE) <= (uint32_t)31))
Kojto 110:165afa46840b 760 #define IS_RTC_WEEKDAY(WEEKDAY) (((WEEKDAY) == RTC_WEEKDAY_MONDAY) || \
Kojto 110:165afa46840b 761 ((WEEKDAY) == RTC_WEEKDAY_TUESDAY) || \
Kojto 110:165afa46840b 762 ((WEEKDAY) == RTC_WEEKDAY_WEDNESDAY) || \
Kojto 110:165afa46840b 763 ((WEEKDAY) == RTC_WEEKDAY_THURSDAY) || \
Kojto 110:165afa46840b 764 ((WEEKDAY) == RTC_WEEKDAY_FRIDAY) || \
Kojto 110:165afa46840b 765 ((WEEKDAY) == RTC_WEEKDAY_SATURDAY) || \
Kojto 110:165afa46840b 766 ((WEEKDAY) == RTC_WEEKDAY_SUNDAY))
Kojto 110:165afa46840b 767 #define IS_RTC_ALARM_DATE_WEEKDAY_DATE(DATE) (((DATE) >(uint32_t) 0) && ((DATE) <= (uint32_t)31))
Kojto 110:165afa46840b 768 #define IS_RTC_ALARM_DATE_WEEKDAY_WEEKDAY(WEEKDAY) (((WEEKDAY) == RTC_WEEKDAY_MONDAY) || \
Kojto 110:165afa46840b 769 ((WEEKDAY) == RTC_WEEKDAY_TUESDAY) || \
Kojto 110:165afa46840b 770 ((WEEKDAY) == RTC_WEEKDAY_WEDNESDAY) || \
Kojto 110:165afa46840b 771 ((WEEKDAY) == RTC_WEEKDAY_THURSDAY) || \
Kojto 110:165afa46840b 772 ((WEEKDAY) == RTC_WEEKDAY_FRIDAY) || \
Kojto 110:165afa46840b 773 ((WEEKDAY) == RTC_WEEKDAY_SATURDAY) || \
Kojto 110:165afa46840b 774 ((WEEKDAY) == RTC_WEEKDAY_SUNDAY))
Kojto 110:165afa46840b 775 #define IS_RTC_ALARM_DATE_WEEKDAY_SEL(SEL) (((SEL) == RTC_ALARMDATEWEEKDAYSEL_DATE) || \
Kojto 110:165afa46840b 776 ((SEL) == RTC_ALARMDATEWEEKDAYSEL_WEEKDAY))
Kojto 110:165afa46840b 777 #define IS_RTC_ALARM_MASK(MASK) (((MASK) & 0x7F7F7F7F) == (uint32_t)RESET)
Kojto 110:165afa46840b 778 #define IS_RTC_ALARM(ALARM) (((ALARM) == RTC_ALARM_A) || ((ALARM) == RTC_ALARM_B))
Kojto 110:165afa46840b 779 #define IS_RTC_ALARM_SUB_SECOND_VALUE(VALUE) ((VALUE) <= (uint32_t)0x00007FFF)
Kojto 110:165afa46840b 780
Kojto 110:165afa46840b 781 #define IS_RTC_ALARM_SUB_SECOND_MASK(MASK) (((MASK) == RTC_ALARMSUBSECONDMASK_ALL) || \
Kojto 110:165afa46840b 782 ((MASK) == RTC_ALARMSUBSECONDMASK_SS14_1) || \
Kojto 110:165afa46840b 783 ((MASK) == RTC_ALARMSUBSECONDMASK_SS14_2) || \
Kojto 110:165afa46840b 784 ((MASK) == RTC_ALARMSUBSECONDMASK_SS14_3) || \
Kojto 110:165afa46840b 785 ((MASK) == RTC_ALARMSUBSECONDMASK_SS14_4) || \
Kojto 110:165afa46840b 786 ((MASK) == RTC_ALARMSUBSECONDMASK_SS14_5) || \
Kojto 110:165afa46840b 787 ((MASK) == RTC_ALARMSUBSECONDMASK_SS14_6) || \
Kojto 110:165afa46840b 788 ((MASK) == RTC_ALARMSUBSECONDMASK_SS14_7) || \
Kojto 110:165afa46840b 789 ((MASK) == RTC_ALARMSUBSECONDMASK_SS14_8) || \
Kojto 110:165afa46840b 790 ((MASK) == RTC_ALARMSUBSECONDMASK_SS14_9) || \
Kojto 110:165afa46840b 791 ((MASK) == RTC_ALARMSUBSECONDMASK_SS14_10) || \
Kojto 110:165afa46840b 792 ((MASK) == RTC_ALARMSUBSECONDMASK_SS14_11) || \
Kojto 110:165afa46840b 793 ((MASK) == RTC_ALARMSUBSECONDMASK_SS14_12) || \
Kojto 110:165afa46840b 794 ((MASK) == RTC_ALARMSUBSECONDMASK_SS14_13) || \
Kojto 110:165afa46840b 795 ((MASK) == RTC_ALARMSUBSECONDMASK_SS14) || \
Kojto 110:165afa46840b 796 ((MASK) == RTC_ALARMSUBSECONDMASK_NONE))
Kojto 110:165afa46840b 797 /**
Kojto 110:165afa46840b 798 * @}
Kojto 110:165afa46840b 799 */
Kojto 110:165afa46840b 800
Kojto 110:165afa46840b 801 /**
Kojto 110:165afa46840b 802 * @}
Kojto 110:165afa46840b 803 */
Kojto 110:165afa46840b 804
Kojto 110:165afa46840b 805 /* Private functions ---------------------------------------------------------*/
Kojto 110:165afa46840b 806 /** @defgroup RTC_Private_Functions RTC Private Functions
Kojto 110:165afa46840b 807 * @{
Kojto 110:165afa46840b 808 */
Kojto 110:165afa46840b 809 HAL_StatusTypeDef RTC_EnterInitMode(RTC_HandleTypeDef* hrtc);
Kojto 110:165afa46840b 810 uint8_t RTC_ByteToBcd2(uint8_t Value);
Kojto 110:165afa46840b 811 uint8_t RTC_Bcd2ToByte(uint8_t Value);
Kojto 110:165afa46840b 812 /**
Kojto 110:165afa46840b 813 * @}
Kojto 110:165afa46840b 814 */
Kojto 110:165afa46840b 815
Kojto 110:165afa46840b 816 /**
Kojto 110:165afa46840b 817 * @}
Kojto 110:165afa46840b 818 */
Kojto 110:165afa46840b 819
Kojto 110:165afa46840b 820 /**
Kojto 110:165afa46840b 821 * @}
Kojto 110:165afa46840b 822 */
Kojto 110:165afa46840b 823
Kojto 110:165afa46840b 824 #ifdef __cplusplus
Kojto 110:165afa46840b 825 }
Kojto 110:165afa46840b 826 #endif
Kojto 110:165afa46840b 827
Kojto 110:165afa46840b 828 #endif /* __STM32F4xx_HAL_RTC_H */
Kojto 110:165afa46840b 829
Kojto 110:165afa46840b 830 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/