stm32f10x_rtc.h
上传用户:yj_qqy
上传日期:2017-01-28
资源大小:2911k
文件大小:4k
源码类别:

uCOS

开发平台:

C/C++

  1. /******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
  2. * File Name          : stm32f10x_rtc.h
  3. * Author             : MCD Application Team
  4. * Version            : V2.0.2
  5. * Date               : 07/11/2008
  6. * Description        : This file contains all the functions prototypes for the
  7. *                      RTC firmware library.
  8. ********************************************************************************
  9. * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
  10. * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
  11. * AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
  12. * INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
  13. * CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
  14. * INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
  15. *******************************************************************************/
  16. /* Define to prevent recursive inclusion -------------------------------------*/
  17. #ifndef __STM32F10x_RTC_H
  18. #define __STM32F10x_RTC_H
  19. /* Includes ------------------------------------------------------------------*/
  20. #include "stm32f10x_map.h"
  21. /* Exported types ------------------------------------------------------------*/
  22. /* Exported constants --------------------------------------------------------*/
  23. /* RTC interrupts define -----------------------------------------------------*/
  24. #define RTC_IT_OW            ((u16)0x0004)  /* Overflow interrupt */
  25. #define RTC_IT_ALR           ((u16)0x0002)  /* Alarm interrupt */
  26. #define RTC_IT_SEC           ((u16)0x0001)  /* Second interrupt */
  27. #define IS_RTC_IT(IT) ((((IT) & (u16)0xFFF8) == 0x00) && ((IT) != 0x00))
  28. #define IS_RTC_GET_IT(IT) (((IT) == RTC_IT_OW) || ((IT) == RTC_IT_ALR) || 
  29.                            ((IT) == RTC_IT_SEC))
  30.                                                                      
  31. /* RTC interrupts flags ------------------------------------------------------*/
  32. #define RTC_FLAG_RTOFF       ((u16)0x0020)  /* RTC Operation OFF flag */
  33. #define RTC_FLAG_RSF         ((u16)0x0008)  /* Registers Synchronized flag */
  34. #define RTC_FLAG_OW          ((u16)0x0004)  /* Overflow flag */
  35. #define RTC_FLAG_ALR         ((u16)0x0002)  /* Alarm flag */
  36. #define RTC_FLAG_SEC         ((u16)0x0001)  /* Second flag */
  37. #define IS_RTC_CLEAR_FLAG(FLAG) ((((FLAG) & (u16)0xFFF0) == 0x00) && ((FLAG) != 0x00))
  38. #define IS_RTC_GET_FLAG(FLAG) (((FLAG) == RTC_FLAG_RTOFF) || ((FLAG) == RTC_FLAG_RSF) || 
  39.                                ((FLAG) == RTC_FLAG_OW) || ((FLAG) == RTC_FLAG_ALR) || 
  40.                                ((FLAG) == RTC_FLAG_SEC))
  41. #define IS_RTC_PRESCALER(PRESCALER) ((PRESCALER) <= 0xFFFFF)
  42.                            
  43. /* Exported macro ------------------------------------------------------------*/
  44. /* Exported functions ------------------------------------------------------- */
  45. void RTC_ITConfig(u16 RTC_IT, FunctionalState NewState);
  46. void RTC_EnterConfigMode(void);
  47. void RTC_ExitConfigMode(void);
  48. u32  RTC_GetCounter(void);
  49. void RTC_SetCounter(u32 CounterValue);
  50. void RTC_SetPrescaler(u32 PrescalerValue);
  51. void RTC_SetAlarm(u32 AlarmValue);
  52. u32  RTC_GetDivider(void);
  53. void RTC_WaitForLastTask(void);
  54. void RTC_WaitForSynchro(void);
  55. FlagStatus RTC_GetFlagStatus(u16 RTC_FLAG);
  56. void RTC_ClearFlag(u16 RTC_FLAG);
  57. ITStatus RTC_GetITStatus(u16 RTC_IT);
  58. void RTC_ClearITPendingBit(u16 RTC_IT);
  59. #endif /* __STM32F10x_RTC_H */
  60. /******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/