STM32L0 - Rename RTC_LSI

pull/2816/head
svastm 2016-09-27 11:26:43 +02:00
parent 57208bb651
commit da44e99a1c
1 changed files with 8 additions and 8 deletions

View File

@ -34,13 +34,13 @@
#include "mbed_error.h" #include "mbed_error.h"
#if DEVICE_RTC_LSI #if RTC_LSI
static int rtc_inited = 0; static int rtc_inited = 0;
#endif #endif
static RTC_HandleTypeDef RtcHandle; static RTC_HandleTypeDef RtcHandle;
#if DEVICE_RTC_LSI #if RTC_LSI
#define RTC_CLOCK LSI_VALUE #define RTC_CLOCK LSI_VALUE
#else #else
#define RTC_CLOCK LSE_VALUE #define RTC_CLOCK LSE_VALUE
@ -64,7 +64,7 @@ void rtc_init(void)
RCC_OscInitTypeDef RCC_OscInitStruct; RCC_OscInitTypeDef RCC_OscInitStruct;
RCC_PeriphCLKInitTypeDef PeriphClkInitStruct; RCC_PeriphCLKInitTypeDef PeriphClkInitStruct;
#if DEVICE_RTC_LSI #if RTC_LSI
if (rtc_inited) return; if (rtc_inited) return;
rtc_inited = 1; rtc_inited = 1;
#endif #endif
@ -79,7 +79,7 @@ void rtc_init(void)
// Enable access to Backup domain // Enable access to Backup domain
HAL_PWR_EnableBkUpAccess(); HAL_PWR_EnableBkUpAccess();
#if !DEVICE_RTC_LSI #if !RTC_LSI
// Enable LSE Oscillator // Enable LSE Oscillator
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_LSE; RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_LSE;
RCC_OscInitStruct.PLL.PLLState = RCC_PLL_NONE; // Mandatory, otherwise the PLL is reconfigured! RCC_OscInitStruct.PLL.PLLState = RCC_PLL_NONE; // Mandatory, otherwise the PLL is reconfigured!
@ -129,7 +129,7 @@ void rtc_init(void)
} }
#if DEVICE_LOWPOWERTIMER #if DEVICE_LOWPOWERTIMER
#if DEVICE_RTC_LSI #if RTC_LSI
rtc_write(0); rtc_write(0);
#else #else
if (!rtc_isenabled()) { if (!rtc_isenabled()) {
@ -145,7 +145,7 @@ void rtc_init(void)
void rtc_free(void) void rtc_free(void)
{ {
#if DEVICE_RTC_LSI #if RTC_LSI
// Enable Power clock // Enable Power clock
__PWR_CLK_ENABLE(); __PWR_CLK_ENABLE();
@ -168,14 +168,14 @@ void rtc_free(void)
RCC_OscInitStruct.LSEState = RCC_LSE_OFF; RCC_OscInitStruct.LSEState = RCC_LSE_OFF;
HAL_RCC_OscConfig(&RCC_OscInitStruct); HAL_RCC_OscConfig(&RCC_OscInitStruct);
#if DEVICE_RTC_LSI #if RTC_LSI
rtc_inited = 0; rtc_inited = 0;
#endif #endif
} }
int rtc_isenabled(void) int rtc_isenabled(void)
{ {
#if DEVICE_RTC_LSI #if RTC_LSI
return rtc_inited; return rtc_inited;
#else #else
if ((RTC->ISR & RTC_ISR_INITS) == RTC_ISR_INITS) { if ((RTC->ISR & RTC_ISR_INITS) == RTC_ISR_INITS) {