STM32F439xx HAL User Manual
Defines
Common Write and read registers Macros
RTC Exported Macros

Defines

#define LL_RTC_WriteReg(__INSTANCE__, __REG__, __VALUE__)   WRITE_REG(__INSTANCE__->__REG__, (__VALUE__))
 Write a value in RTC register.
#define LL_RTC_ReadReg(__INSTANCE__, __REG__)   READ_REG(__INSTANCE__->__REG__)
 Read a value in RTC register.

Define Documentation

#define LL_RTC_ReadReg (   __INSTANCE__,
  __REG__ 
)    READ_REG(__INSTANCE__->__REG__)

Read a value in RTC register.

Parameters:
__INSTANCE__RTC Instance
__REG__Register to be read
Return values:
Registervalue

Definition at line 668 of file stm32f4xx_ll_rtc.h.

Referenced by LL_RTC_DeInit().

#define LL_RTC_WriteReg (   __INSTANCE__,
  __REG__,
  __VALUE__ 
)    WRITE_REG(__INSTANCE__->__REG__, (__VALUE__))

Write a value in RTC register.

Parameters:
__INSTANCE__RTC Instance
__REG__Register to be written
__VALUE__Value to be written in the register
Return values:
None

Definition at line 660 of file stm32f4xx_ll_rtc.h.

Referenced by LL_RTC_DeInit().