HAL
__HAL_RTC_TIMESTAMP_ENABLE_IT is only used within HAL.
 
Symbols
loading...
Files
loading...
CodeScopeSTM32 Libraries and SamplesHAL__HAL_RTC_TIMESTAMP_ENABLE_IT

__HAL_RTC_TIMESTAMP_ENABLE_IT macro

Enable the RTC Timestamp interrupt.

Syntax

#define __HAL_RTC_TIMESTAMP_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR |= (__INTERRUPT__))

Arguments

__HANDLE__

specifies the RTC handle.

__INTERRUPT__

specifies the RTC Timestamp interrupt sources to be enabled or disabled. This parameter can be: @arg RTC_IT_TS: TimeStamp interrupt

Return value

None

References

LocationText
stm32f4xx_hal_rtc_ex.h:524
#define __HAL_RTC_TIMESTAMP_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR |= (__INTERRUPT__))
stm32f4xx_hal_rtc_ex.c:297
__HAL_RTC_TIMESTAMP_ENABLE_IT(hrtc, RTC_IT_TS);