Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions boards/xtensa/odroid_go/odroid_go.dts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
leds {
compatible = "gpio-leds";
blue_led: led {
gpios = <&gpio0 2 GPIO_INT_ACTIVE_HIGH>;
gpios = <&gpio0 2 GPIO_ACTIVE_HIGH>;
label = "Status Led";
};
};
Expand All @@ -29,23 +29,23 @@
compatible = "gpio-keys";
menu_button: menu_button {
label = "Menu";
gpios = <&gpio0 13 GPIO_INT_ACTIVE_LOW>;
gpios = <&gpio0 13 GPIO_ACTIVE_LOW>;
};
select_button: select_button {
label = "Select";
gpios = <&gpio0 27 GPIO_INT_ACTIVE_LOW>;
gpios = <&gpio0 27 GPIO_ACTIVE_LOW>;
};
a_button: a_button {
label = "A";
gpios = <&gpio1 0 GPIO_INT_ACTIVE_LOW>;
gpios = <&gpio1 0 GPIO_ACTIVE_LOW>;
};
b_button: b_button {
label = "B";
gpios = <&gpio1 1 GPIO_INT_ACTIVE_LOW>;
gpios = <&gpio1 1 GPIO_ACTIVE_LOW>;
};
start_button: start_button {
label = "Start";
gpios = <&gpio1 7 GPIO_INT_ACTIVE_LOW>;
gpios = <&gpio1 7 GPIO_ACTIVE_LOW>;
};
};

Expand Down
8 changes: 8 additions & 0 deletions drivers/gpio/Kconfig.esp32
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,14 @@ if GPIO_ESP32
config GPIO_ESP32_IRQ
int "IRQ line for ESP32 GPIO pins"
default 10
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.

config GPIO_ESP32_0
bool "ESP32 GPIO (pins 0-31)"
Expand Down
Loading