STM32F767 RTC如何设置年,如2019?

2019-07-20 00:33发布

我找了库里面对年的设置,范围是0-99,那我如何设置成2019年,比如系统里面有time()函数可以获取当前的时间,如何将RTC的时间同步到time()里面去?

  1. typedef struct
  2. {
  3.   uint8_t WeekDay;  /*!< Specifies the RTC Date WeekDay.
  4.                          This parameter can be a value of @ref RTC_WeekDay_Definitions */
  5.   
  6.   uint8_t Month;    /*!< Specifies the RTC Date Month (in BCD format).
  7.                          This parameter can be a value of @ref RTC_Month_Date_Definitions */

  8.   uint8_t Date;     /*!< Specifies the RTC Date.
  9.                          This parameter must be a number between Min_Data = 1 and Max_Data = 31 */
  10.   
  11.   uint8_t Year;     /*!< Specifies the RTC Date Year.
  12.                          This parameter must be a number between Min_Data = 0 and Max_Data = 99 */
  13.                         
  14. }RTC_DateTypeDef;
复制代码


友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。