Skip to content

Commit 76467c1

Browse files
committed
[FoxHunting] Patch for framework issue #164 AWU_IRQHandler not working for STM8S
tenbaht/sduino#164 AWU_IRQHandler not working for STM8S
1 parent 75c6c35 commit 76467c1

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

patches-fw/cores/sduino/stm8s_it.h

+5
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525
******************************************************************************
2626
*/
2727

28+
// PATCH wmarkow 09.07.2024 #164 AWU_IRQHandler not working for STM8S https://github.com/tenbaht/sduino/issues/164
29+
2830
/* Define to prevent recursive inclusion -------------------------------------*/
2931
#ifndef __STM8S_IT_H
3032
#define __STM8S_IT_H
@@ -123,6 +125,9 @@
123125
// INTERRUPT_HANDLER_TRAP(TRAP_IRQHandler); /* TRAP */
124126
// INTERRUPT_HANDLER(TLI_IRQHandler, 0); /* TLI */
125127
// INTERRUPT_HANDLER(AWU_IRQHandler, 1); /* AWU */
128+
// PATCH wmarkow 'AWU_IRQHandler not working' begin
129+
INTERRUPT_HANDLER(AWU_IRQHandler, 1); /* AWU */
130+
// PATCH wmarkow 'AWU_IRQHandler not working' end
126131
// INTERRUPT_HANDLER(CLK_IRQHandler, 2); /* CLOCK */
127132
INTERRUPT_HANDLER(EXTI_PORTA_IRQHandler, 3); /* EXTI PORTA */
128133
INTERRUPT_HANDLER(EXTI_PORTB_IRQHandler, 4); /* EXTI PORTB */

0 commit comments

Comments
 (0)