The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

mbed 2

This is the mbed 2 library. If you'd like to learn about Mbed OS please see the mbed-os docs.

Committer:
bogdanm
Date:
Mon Dec 09 18:43:03 2013 +0200
Revision:
73:1efda918f0ba
Child:
76:824293ae5e43
Release 73 of the mbed library

Main changes:

- added support for KL46Z and NUCLEO_F103RB
- STM32 USB device support
- various bug fixes

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bogdanm 73:1efda918f0ba 1 /**
bogdanm 73:1efda918f0ba 2 ******************************************************************************
bogdanm 73:1efda918f0ba 3 * @file stm32f10x_rtc.h
bogdanm 73:1efda918f0ba 4 * @author MCD Application Team
bogdanm 73:1efda918f0ba 5 * @version V3.5.0
bogdanm 73:1efda918f0ba 6 * @date 11-March-2011
bogdanm 73:1efda918f0ba 7 * @brief This file contains all the functions prototypes for the RTC firmware
bogdanm 73:1efda918f0ba 8 * library.
bogdanm 73:1efda918f0ba 9 ******************************************************************************
bogdanm 73:1efda918f0ba 10 * @attention
bogdanm 73:1efda918f0ba 11 *
bogdanm 73:1efda918f0ba 12 * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
bogdanm 73:1efda918f0ba 13 * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
bogdanm 73:1efda918f0ba 14 * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
bogdanm 73:1efda918f0ba 15 * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
bogdanm 73:1efda918f0ba 16 * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
bogdanm 73:1efda918f0ba 17 * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
bogdanm 73:1efda918f0ba 18 *
bogdanm 73:1efda918f0ba 19 * <h2><center>&copy; COPYRIGHT 2011 STMicroelectronics</center></h2>
bogdanm 73:1efda918f0ba 20 ******************************************************************************
bogdanm 73:1efda918f0ba 21 */
bogdanm 73:1efda918f0ba 22
bogdanm 73:1efda918f0ba 23 /* Define to prevent recursive inclusion -------------------------------------*/
bogdanm 73:1efda918f0ba 24 #ifndef __STM32F10x_RTC_H
bogdanm 73:1efda918f0ba 25 #define __STM32F10x_RTC_H
bogdanm 73:1efda918f0ba 26
bogdanm 73:1efda918f0ba 27 #ifdef __cplusplus
bogdanm 73:1efda918f0ba 28 extern "C" {
bogdanm 73:1efda918f0ba 29 #endif
bogdanm 73:1efda918f0ba 30
bogdanm 73:1efda918f0ba 31 /* Includes ------------------------------------------------------------------*/
bogdanm 73:1efda918f0ba 32 #include "stm32f10x.h"
bogdanm 73:1efda918f0ba 33
bogdanm 73:1efda918f0ba 34 /** @addtogroup STM32F10x_StdPeriph_Driver
bogdanm 73:1efda918f0ba 35 * @{
bogdanm 73:1efda918f0ba 36 */
bogdanm 73:1efda918f0ba 37
bogdanm 73:1efda918f0ba 38 /** @addtogroup RTC
bogdanm 73:1efda918f0ba 39 * @{
bogdanm 73:1efda918f0ba 40 */
bogdanm 73:1efda918f0ba 41
bogdanm 73:1efda918f0ba 42 /** @defgroup RTC_Exported_Types
bogdanm 73:1efda918f0ba 43 * @{
bogdanm 73:1efda918f0ba 44 */
bogdanm 73:1efda918f0ba 45
bogdanm 73:1efda918f0ba 46 /**
bogdanm 73:1efda918f0ba 47 * @}
bogdanm 73:1efda918f0ba 48 */
bogdanm 73:1efda918f0ba 49
bogdanm 73:1efda918f0ba 50 /** @defgroup RTC_Exported_Constants
bogdanm 73:1efda918f0ba 51 * @{
bogdanm 73:1efda918f0ba 52 */
bogdanm 73:1efda918f0ba 53
bogdanm 73:1efda918f0ba 54 /** @defgroup RTC_interrupts_define
bogdanm 73:1efda918f0ba 55 * @{
bogdanm 73:1efda918f0ba 56 */
bogdanm 73:1efda918f0ba 57
bogdanm 73:1efda918f0ba 58 #define RTC_IT_OW ((uint16_t)0x0004) /*!< Overflow interrupt */
bogdanm 73:1efda918f0ba 59 #define RTC_IT_ALR ((uint16_t)0x0002) /*!< Alarm interrupt */
bogdanm 73:1efda918f0ba 60 #define RTC_IT_SEC ((uint16_t)0x0001) /*!< Second interrupt */
bogdanm 73:1efda918f0ba 61 #define IS_RTC_IT(IT) ((((IT) & (uint16_t)0xFFF8) == 0x00) && ((IT) != 0x00))
bogdanm 73:1efda918f0ba 62 #define IS_RTC_GET_IT(IT) (((IT) == RTC_IT_OW) || ((IT) == RTC_IT_ALR) || \
bogdanm 73:1efda918f0ba 63 ((IT) == RTC_IT_SEC))
bogdanm 73:1efda918f0ba 64 /**
bogdanm 73:1efda918f0ba 65 * @}
bogdanm 73:1efda918f0ba 66 */
bogdanm 73:1efda918f0ba 67
bogdanm 73:1efda918f0ba 68 /** @defgroup RTC_interrupts_flags
bogdanm 73:1efda918f0ba 69 * @{
bogdanm 73:1efda918f0ba 70 */
bogdanm 73:1efda918f0ba 71
bogdanm 73:1efda918f0ba 72 #define RTC_FLAG_RTOFF ((uint16_t)0x0020) /*!< RTC Operation OFF flag */
bogdanm 73:1efda918f0ba 73 #define RTC_FLAG_RSF ((uint16_t)0x0008) /*!< Registers Synchronized flag */
bogdanm 73:1efda918f0ba 74 #define RTC_FLAG_OW ((uint16_t)0x0004) /*!< Overflow flag */
bogdanm 73:1efda918f0ba 75 #define RTC_FLAG_ALR ((uint16_t)0x0002) /*!< Alarm flag */
bogdanm 73:1efda918f0ba 76 #define RTC_FLAG_SEC ((uint16_t)0x0001) /*!< Second flag */
bogdanm 73:1efda918f0ba 77 #define IS_RTC_CLEAR_FLAG(FLAG) ((((FLAG) & (uint16_t)0xFFF0) == 0x00) && ((FLAG) != 0x00))
bogdanm 73:1efda918f0ba 78 #define IS_RTC_GET_FLAG(FLAG) (((FLAG) == RTC_FLAG_RTOFF) || ((FLAG) == RTC_FLAG_RSF) || \
bogdanm 73:1efda918f0ba 79 ((FLAG) == RTC_FLAG_OW) || ((FLAG) == RTC_FLAG_ALR) || \
bogdanm 73:1efda918f0ba 80 ((FLAG) == RTC_FLAG_SEC))
bogdanm 73:1efda918f0ba 81 #define IS_RTC_PRESCALER(PRESCALER) ((PRESCALER) <= 0xFFFFF)
bogdanm 73:1efda918f0ba 82
bogdanm 73:1efda918f0ba 83 /**
bogdanm 73:1efda918f0ba 84 * @}
bogdanm 73:1efda918f0ba 85 */
bogdanm 73:1efda918f0ba 86
bogdanm 73:1efda918f0ba 87 /**
bogdanm 73:1efda918f0ba 88 * @}
bogdanm 73:1efda918f0ba 89 */
bogdanm 73:1efda918f0ba 90
bogdanm 73:1efda918f0ba 91 /** @defgroup RTC_Exported_Macros
bogdanm 73:1efda918f0ba 92 * @{
bogdanm 73:1efda918f0ba 93 */
bogdanm 73:1efda918f0ba 94
bogdanm 73:1efda918f0ba 95 /**
bogdanm 73:1efda918f0ba 96 * @}
bogdanm 73:1efda918f0ba 97 */
bogdanm 73:1efda918f0ba 98
bogdanm 73:1efda918f0ba 99 /** @defgroup RTC_Exported_Functions
bogdanm 73:1efda918f0ba 100 * @{
bogdanm 73:1efda918f0ba 101 */
bogdanm 73:1efda918f0ba 102
bogdanm 73:1efda918f0ba 103 void RTC_ITConfig(uint16_t RTC_IT, FunctionalState NewState);
bogdanm 73:1efda918f0ba 104 void RTC_EnterConfigMode(void);
bogdanm 73:1efda918f0ba 105 void RTC_ExitConfigMode(void);
bogdanm 73:1efda918f0ba 106 uint32_t RTC_GetCounter(void);
bogdanm 73:1efda918f0ba 107 void RTC_SetCounter(uint32_t CounterValue);
bogdanm 73:1efda918f0ba 108 void RTC_SetPrescaler(uint32_t PrescalerValue);
bogdanm 73:1efda918f0ba 109 void RTC_SetAlarm(uint32_t AlarmValue);
bogdanm 73:1efda918f0ba 110 uint32_t RTC_GetDivider(void);
bogdanm 73:1efda918f0ba 111 void RTC_WaitForLastTask(void);
bogdanm 73:1efda918f0ba 112 void RTC_WaitForSynchro(void);
bogdanm 73:1efda918f0ba 113 FlagStatus RTC_GetFlagStatus(uint16_t RTC_FLAG);
bogdanm 73:1efda918f0ba 114 void RTC_ClearFlag(uint16_t RTC_FLAG);
bogdanm 73:1efda918f0ba 115 ITStatus RTC_GetITStatus(uint16_t RTC_IT);
bogdanm 73:1efda918f0ba 116 void RTC_ClearITPendingBit(uint16_t RTC_IT);
bogdanm 73:1efda918f0ba 117
bogdanm 73:1efda918f0ba 118 #ifdef __cplusplus
bogdanm 73:1efda918f0ba 119 }
bogdanm 73:1efda918f0ba 120 #endif
bogdanm 73:1efda918f0ba 121
bogdanm 73:1efda918f0ba 122 #endif /* __STM32F10x_RTC_H */
bogdanm 73:1efda918f0ba 123 /**
bogdanm 73:1efda918f0ba 124 * @}
bogdanm 73:1efda918f0ba 125 */
bogdanm 73:1efda918f0ba 126
bogdanm 73:1efda918f0ba 127 /**
bogdanm 73:1efda918f0ba 128 * @}
bogdanm 73:1efda918f0ba 129 */
bogdanm 73:1efda918f0ba 130
bogdanm 73:1efda918f0ba 131 /**
bogdanm 73:1efda918f0ba 132 * @}
bogdanm 73:1efda918f0ba 133 */
bogdanm 73:1efda918f0ba 134
bogdanm 73:1efda918f0ba 135 /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/