Skip to content
Snippets Groups Projects
Unverified Commit 8428fe2d authored by Peter Kietzmann's avatar Peter Kietzmann Committed by GitHub
Browse files

Merge pull request #8363 from smlng/board/remotes/fix_saul_btn

boards/remote: invert button logic in SAUL
parents 50f3d6a4 a42e4bd5
No related branches found
No related tags found
No related merge requests found
...@@ -32,24 +32,28 @@ extern "C" { ...@@ -32,24 +32,28 @@ extern "C" {
static const saul_gpio_params_t saul_gpio_params[] = static const saul_gpio_params_t saul_gpio_params[] =
{ {
{ {
.name = "LED(red)", .name = "LED(red)",
.pin = LED0_PIN, .pin = LED0_PIN,
.mode = GPIO_OUT .mode = GPIO_OUT,
.flags = 0x0,
}, },
{ {
.name = "LED(green)", .name = "LED(green)",
.pin = LED1_PIN, .pin = LED1_PIN,
.mode = GPIO_OUT .mode = GPIO_OUT,
.flags = 0x0,
}, },
{ {
.name = "LED(blue)", .name = "LED(blue)",
.pin = LED2_PIN, .pin = LED2_PIN,
.mode = GPIO_OUT .mode = GPIO_OUT,
.flags = 0x0,
}, },
{ {
.name = "Button(User)", .name = "Button(User)",
.pin = BTN0_PIN, .pin = BTN0_PIN,
.mode = BTN0_MODE .mode = BTN0_MODE,
.flags = SAUL_GPIO_INVERTED,
}, },
}; };
......
...@@ -32,24 +32,28 @@ extern "C" { ...@@ -32,24 +32,28 @@ extern "C" {
static const saul_gpio_params_t saul_gpio_params[] = static const saul_gpio_params_t saul_gpio_params[] =
{ {
{ {
.name = "LED(red)", .name = "LED(red)",
.pin = LED0_PIN, .pin = LED0_PIN,
.mode = GPIO_OUT .mode = GPIO_OUT,
.flags = 0x0,
}, },
{ {
.name = "LED(green)", .name = "LED(green)",
.pin = LED1_PIN, .pin = LED1_PIN,
.mode = GPIO_OUT .mode = GPIO_OUT,
.flags = 0x0,
}, },
{ {
.name = "LED(blue)", .name = "LED(blue)",
.pin = LED2_PIN, .pin = LED2_PIN,
.mode = GPIO_OUT .mode = GPIO_OUT,
.flags = 0x0,
}, },
{ {
.name = "Button(User)", .name = "Button(User)",
.pin = BTN0_PIN, .pin = BTN0_PIN,
.mode = BTN0_MODE .mode = BTN0_MODE,
.flags = SAUL_GPIO_INVERTED,
}, },
}; };
......
...@@ -32,24 +32,28 @@ extern "C" { ...@@ -32,24 +32,28 @@ extern "C" {
static const saul_gpio_params_t saul_gpio_params[] = static const saul_gpio_params_t saul_gpio_params[] =
{ {
{ {
.name = "LED(red)", .name = "LED(red)",
.pin = LED0_PIN, .pin = LED0_PIN,
.mode = GPIO_OUT .mode = GPIO_OUT,
.flags = 0x0,
}, },
{ {
.name = "LED(green)", .name = "LED(green)",
.pin = LED1_PIN, .pin = LED1_PIN,
.mode = GPIO_OUT .mode = GPIO_OUT,
.flags = 0x0,
}, },
{ {
.name = "LED(blue)", .name = "LED(blue)",
.pin = LED2_PIN, .pin = LED2_PIN,
.mode = GPIO_OUT .mode = GPIO_OUT,
.flags = 0x0,
}, },
{ {
.name = "Button(User)", .name = "Button(User)",
.pin = BTN0_PIN, .pin = BTN0_PIN,
.mode = BTN0_MODE .mode = BTN0_MODE,
.flags = SAUL_GPIO_INVERTED,
}, },
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment