Skip to main content
pbhol
Associate II
March 28, 2019
Question

I am using STM32F4 discovery board RTC Alarms (A and B) through EXTI line interrupt . What does it means ?? 1. Can i attach Usart Rx pin to EXTI line interrupt 2. want to achieve standby rtc mode using rtc alam for 15min and for 1min

  • March 28, 2019
  • 2 replies
  • 727 views

..

This topic has been closed for replies.

2 replies

S.Ma
Principal
March 28, 2019

Exti on alternate function is possible if you directly write the exti registers because HAL defines are missing.

waclawek.jan
Super User
March 28, 2019

> RTC Alarms (A and B) through EXTI line interrupt . What does it means ??0690X0000089BYxQAM.png

In other words, you enable one of the alarms to interrupt in RTC, then you have to enable the respective line 17 in EXTI, and then enable RTC_Alarm_IRQn in NVIC - and RTC_Alarm_IRQ is in fact the EXTI17 interrupt.

JW