Skip to content

Commit

Permalink
drivers: interrupt_controller
Browse files Browse the repository at this point in the history
rework to support peripherals

Signed-off-by: Alexander Kozhinov <ak.alexander.kozhinov@gmail.com>
  • Loading branch information
KozhinovAlexander committed Mar 2, 2025
1 parent 0e79f72 commit 0f909fc
Show file tree
Hide file tree
Showing 5 changed files with 885 additions and 267 deletions.
14 changes: 14 additions & 0 deletions drivers/interrupt_controller/Kconfig.stm32
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# STM32 EXTI configuration

# Copyright (c) 2016 Open-RnD Sp. z o.o.
# Copyright (c) 2025 Alexander Kozhinov <ak.alexander.kozhinov@gmail.com>
# SPDX-License-Identifier: Apache-2.0

if SOC_FAMILY_STM32
Expand All @@ -20,3 +21,16 @@ config GPIO_INTC_STM32WB0
Enable GPIO interrupt controller driver for STM32WB0 series

endif # SOC_FAMILY_STM32


if EXTI_STM32

config EXTI_STM32_HAS_64_LINES
bool

config EXTI_STM32_HAS_96_LINES
bool
select EXTI_STM32_HAS_64_LINES
default y if SOC_SERIES_STM32H7X

endif # EXTI_STM32
Loading

0 comments on commit 0f909fc

Please sign in to comment.