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:
Kojto
Date:
Wed Sep 02 14:17:43 2015 +0100
Revision:
106:ba1f97679dad
Parent:
99:dbbf35b96557
Child:
110:165afa46840b
Release 106  of the mbed library

Changes:
- new platform - Nucleo F446RE
- STM32F4 Cube driver update v2.3.2
- ST cmsis driver v2.3.2
- nordic bugfix gcc linker start address
- lpc11u68 - bugfix for serial ports

Who changed what in which revision?

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