:orphan: .. title:: GPIO_ESP32_IRQ .. option:: CONFIG_GPIO_ESP32_IRQ *IRQ line for ESP32 GPIO pins* Type: ``int`` Help ==== Select the IRQ line to be used for GPIO interrupts. Edge-triggered interrupts are supported on lines: 10, 22, 28, 30. Level-triggered interrupts are supported on lines: 0-5, 8, 9, 12, 13, 17-21, 23-27, 31. Direct dependencies =================== \ :option:`GPIO_ESP32 ` && \ :option:`GPIO ` *(Includes any dependencies from ifs and menus.)* Default ======= - 10 Kconfig definition ================== .. highlight:: kconfig At ``drivers/gpio/Kconfig.esp32:14`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``drivers/Kconfig:34`` → ``drivers/gpio/Kconfig:50`` Menu path: (Top) → Device Drivers → GPIO Drivers → ESP32 GPIO .. parsed-literal:: config GPIO_ESP32_IRQ int "IRQ line for ESP32 GPIO pins" default 10 depends on \ :option:`GPIO_ESP32 ` && \ :option:`GPIO ` help Select the IRQ line to be used for GPIO interrupts. Edge-triggered interrupts are supported on lines: 10, 22, 28, 30. Level-triggered interrupts are supported on lines: 0-5, 8, 9, 12, 13, 17-21, 23-27, 31. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*