Skip to content

Commit

Permalink
[FoxHunting] Patch for framework issue #164 AWU_IRQHandler not workin…
Browse files Browse the repository at this point in the history
…g for STM8S

tenbaht/sduino#164 AWU_IRQHandler not working for STM8S
  • Loading branch information
wmarkow committed Jul 9, 2024
1 parent 75c6c35 commit 76467c1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions patches-fw/cores/sduino/stm8s_it.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
******************************************************************************
*/

// PATCH wmarkow 09.07.2024 #164 AWU_IRQHandler not working for STM8S https://github.com/tenbaht/sduino/issues/164

/* Define to prevent recursive inclusion -------------------------------------*/
#ifndef __STM8S_IT_H
#define __STM8S_IT_H
Expand Down Expand Up @@ -123,6 +125,9 @@
// INTERRUPT_HANDLER_TRAP(TRAP_IRQHandler); /* TRAP */
// INTERRUPT_HANDLER(TLI_IRQHandler, 0); /* TLI */
// INTERRUPT_HANDLER(AWU_IRQHandler, 1); /* AWU */
// PATCH wmarkow 'AWU_IRQHandler not working' begin
INTERRUPT_HANDLER(AWU_IRQHandler, 1); /* AWU */
// PATCH wmarkow 'AWU_IRQHandler not working' end
// INTERRUPT_HANDLER(CLK_IRQHandler, 2); /* CLOCK */
INTERRUPT_HANDLER(EXTI_PORTA_IRQHandler, 3); /* EXTI PORTA */
INTERRUPT_HANDLER(EXTI_PORTB_IRQHandler, 4); /* EXTI PORTB */
Expand Down

0 comments on commit 76467c1

Please sign in to comment.