cancel
Showing results for 
Search instead for 
Did you mean: 

problems with the RTC WakeUp.

Moved from the Feedback Forum.

The Feeedback Forum is not for product questions.


Hi,

I'm using Keil platform for programme my STM32 L073RZT6 and I am making it in bare metal. I would like to wake up the STM from any sleep mode using and interruption from the RTC Wake Up. I am using the following code to configure the RTC:

/********* Configuración del RTC *********/
	// Desbloqueo de la protección de escritura del reloj 
	SET_BIT(PWR->CR, PWR_CR_DBP);
	SET_BIT(PWR->CR, PWR_CR_CWUF);
	// Reinicio del RTC
	SET_BIT(RCC -> CSR, RCC_CSR_RTCRST);
	for(int a = 0; a <1000 ; a++){}
	CLEAR_BIT(RCC -> CSR, RCC_CSR_RTCRST);
	// Establecimiento del reloj para el RTC
	MODIFY_REG(RCC -> CSR, RCC_CSR_RTCSEL_Msk, RCC_CSR_RTCSEL_LSI);
	for(int a = 0; a <1000 ; a++){}
	// Habilita el RTC
	SET_BIT(RCC -> CSR, RCC_CSR_RTCEN);
	
	// Desbloqueo del RTC mediante las claves de seguridad
	WRITE_REG(RTC -> WPR, 0xCA);
	WRITE_REG(RTC -> WPR, 0x53);
	
	// Establece el modo de iniciación
	if (READ_BIT(RTC->ISR, RTC_ISR_INITF) == 0U)
  {
		// Activa el bit de inicio
    SET_BIT(RTC->ISR, RTC_ISR_INIT);
		// Espera a entrar en modo inicio
		while (READ_BIT(RTC->ISR, RTC_ISR_INITF) == 0U);
	}
	
	// Establece el escalado general del RTC
	WRITE_REG(RTC->PRER, (36 << 16) | (999));//(255 << RTC_PRER_PREDIV_A_Pos) | (270 << RTC_PRER_PREDIV_S_Pos));
	// Establece el registro de bypass para la lectura
	SET_BIT(RTC->CR, RTC_CR_BYPSHAD);
	CLEAR_BIT(RTC->CR, RTC_CR_FMT);
	CLEAR_BIT(RTC->CR, RTC_CR_REFCKON);
	
	// Desactiva el modo de inicio y se inician los contadores de cuenta
	CLEAR_BIT(RTC->ISR, RTC_ISR_INIT);
	while (READ_BIT(RTC->ISR, RTC_ISR_INITF) != 0U){};
	
	// Comprobar que la bandera del WakeUp esté bajada
	if ((RTC->CR & RTC_CR_WUTE) != 0U){
		while ((RTC->ISR & RTC_ISR_WUTWF)!=0U);
	}
	
	// Deshabilitar el Wake-Up Timer antes de configurarlo
	RTC->CR &= ~RTC_CR_WUTE;

	// Limpia la bandera de interrupción.
	RTC->ISR &= ~RTC_ISR_WUTF;  
	while ((RTC->ISR & RTC_ISR_WUTWF)==0U);
	
	// Seleccionar la fuente del Wake-Up Timer 
	RTC->CR &= ~RTC_CR_WUCKSEL_Msk; // 1Hz
	RTC->CR |= 4U << RTC_CR_WUCKSEL_Pos;

	// Configurar el contador para 5 segundos
	RTC->WUTR = 20;  

	// Habilitar la interrupción del Wake-Up Timer
	RTC->CR |= RTC_CR_WUTIE;

	// Habilitar el Wake-Up Timer
	RTC->CR |= RTC_CR_WUTE;
	
	EXTI->IMR |= EXTI_IMR_IM20;
	EXTI->RTSR |= EXTI_RTSR_TR20;
	EXTI->PR = EXTI_PR_PR20; 
	
	NVIC_EnableIRQ(RTC_IRQn);
	
	// Bloquear el RTC
	RTC->WPR = 0xFF;

With this code I use the LSI as CLK for the RTC. I use the 1Hz clk for the wakeUp. RTC is working and I can get the time from it, but the WUTR register is not dicrement his count. Someone could help me to find what is the error with the code. Thanks you for the help. 

0 REPLIES 0