Merge remote-tracking branch 'ofw/dev' into mntm-dev

This commit is contained in:
Willy-JL
2024-10-31 18:15:07 +00:00
29 changed files with 1071 additions and 19 deletions

View File

@@ -68,6 +68,9 @@ const IRQn_Type furi_hal_interrupt_irqn[FuriHalInterruptIdMax] = {
// COMP
[FuriHalInterruptIdCOMP] = COMP_IRQn,
// RTC
[FuriHalInterruptIdRtcAlarm] = RTC_Alarm_IRQn,
// HSEM
[FuriHalInterruptIdHsem] = HSEM_IRQn,
@@ -256,6 +259,10 @@ void DMA2_Channel7_IRQHandler(void) {
furi_hal_interrupt_call(FuriHalInterruptIdDma2Ch7);
}
void RTC_Alarm_IRQHandler(void) {
furi_hal_interrupt_call(FuriHalInterruptIdRtcAlarm);
}
void HSEM_IRQHandler(void) {
furi_hal_interrupt_call(FuriHalInterruptIdHsem);
}