boards: lpcxpresso55s69: Add pullup/pulldown fields to user buttons
Pinmux initialization function for lpcxpresso55s69 was setting user button gpios as pullups, now that pin control will be used these settings should be handled by the GPIO driver. Signed-off-by: Daniel DeGrasse <daniel.degrasse@nxp.com>
This commit is contained in:
parent
8946745cf1
commit
f7f8529365
1 changed files with 3 additions and 3 deletions
|
@ -43,15 +43,15 @@
|
|||
compatible = "gpio-keys";
|
||||
user_button_1: button_0 {
|
||||
label = "User SW1";
|
||||
gpios = <&gpio0 5 GPIO_ACTIVE_HIGH>;
|
||||
gpios = <&gpio0 5 (GPIO_ACTIVE_HIGH | GPIO_PULL_UP)>;
|
||||
};
|
||||
user_button_2: button_1 {
|
||||
label = "User SW2";
|
||||
gpios = <&gpio1 18 GPIO_ACTIVE_LOW>;
|
||||
gpios = <&gpio1 18 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>;
|
||||
};
|
||||
user_button_3: button_2 {
|
||||
label = "User SW3";
|
||||
gpios = <&gpio1 9 GPIO_ACTIVE_LOW>;
|
||||
gpios = <&gpio1 9 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue