mbed official / mbed

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

Committer:
Kojto
Date:
Wed Sep 16 15:32:31 2015 +0100
Revision:
107:4f6c30876dfa
Child:
116:c0f6e94411f5
Release 107  of the mbed library

Changes:
- new platforms - DISCO_F746NG, DISCO_L476VG, NUCLEO_L476RG
- KL43Z - bugfix RTC init function
- K20 - SPI mode fix

Who changed what in which revision?

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