mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
0232e9d89c
Add initial version. Signed-off-by: Gerson Fernando Budke <nandojve@gmail.com>
138 lines
2.7 KiB
C
138 lines
2.7 KiB
C
/*
|
|
* Copyright (C) 2021 Gerson Fernando Budke
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
* directory for more details.
|
|
*/
|
|
|
|
/**
|
|
* @ingroup boards_atxmega-a1-xplained
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Configuration of SAUL mapped GPIO pins
|
|
*
|
|
* @author Gerson Fernando Budke <nandojve@gmail.com>
|
|
*/
|
|
|
|
#ifndef GPIO_PARAMS_H
|
|
#define GPIO_PARAMS_H
|
|
|
|
#include "board.h"
|
|
#include "saul/periph.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @brief GPIO configuration
|
|
*/
|
|
static const saul_gpio_params_t saul_gpio_params[] =
|
|
{
|
|
{
|
|
.name = "SW0",
|
|
.pin = BTN0_PIN,
|
|
.mode = BTN0_MODE,
|
|
.flags = SAUL_GPIO_INVERTED,
|
|
},
|
|
{
|
|
.name = "SW1",
|
|
.pin = BTN1_PIN,
|
|
.mode = BTN1_MODE,
|
|
.flags = SAUL_GPIO_INVERTED,
|
|
},
|
|
{
|
|
.name = "SW2",
|
|
.pin = BTN2_PIN,
|
|
.mode = BTN2_MODE,
|
|
.flags = SAUL_GPIO_INVERTED,
|
|
},
|
|
{
|
|
.name = "SW3",
|
|
.pin = BTN3_PIN,
|
|
.mode = BTN3_MODE,
|
|
.flags = SAUL_GPIO_INVERTED,
|
|
},
|
|
{
|
|
.name = "SW4",
|
|
.pin = BTN4_PIN,
|
|
.mode = BTN4_MODE,
|
|
.flags = SAUL_GPIO_INVERTED,
|
|
},
|
|
{
|
|
.name = "SW5",
|
|
.pin = BTN5_PIN,
|
|
.mode = BTN5_MODE,
|
|
.flags = SAUL_GPIO_INVERTED,
|
|
},
|
|
{
|
|
.name = "SW6",
|
|
.pin = BTN6_PIN,
|
|
.mode = BTN6_MODE,
|
|
.flags = SAUL_GPIO_INVERTED,
|
|
},
|
|
{
|
|
.name = "SW7",
|
|
.pin = BTN7_PIN,
|
|
.mode = BTN7_MODE,
|
|
.flags = SAUL_GPIO_INVERTED,
|
|
},
|
|
{
|
|
.name = "LED0",
|
|
.pin = LED0_PIN,
|
|
.mode = LED0_MODE,
|
|
.flags = SAUL_GPIO_INVERTED,
|
|
},
|
|
{
|
|
.name = "LED1",
|
|
.pin = LED1_PIN,
|
|
.mode = LED1_MODE,
|
|
.flags = SAUL_GPIO_INVERTED,
|
|
},
|
|
{
|
|
.name = "LED2",
|
|
.pin = LED2_PIN,
|
|
.mode = LED2_MODE,
|
|
.flags = SAUL_GPIO_INVERTED,
|
|
},
|
|
{
|
|
.name = "LED3",
|
|
.pin = LED3_PIN,
|
|
.mode = LED3_MODE,
|
|
.flags = SAUL_GPIO_INVERTED,
|
|
},
|
|
{
|
|
.name = "LED4",
|
|
.pin = LED4_PIN,
|
|
.mode = LED4_MODE,
|
|
.flags = SAUL_GPIO_INVERTED,
|
|
},
|
|
{
|
|
.name = "LED5",
|
|
.pin = LED5_PIN,
|
|
.mode = LED5_MODE,
|
|
.flags = SAUL_GPIO_INVERTED,
|
|
},
|
|
{
|
|
.name = "LED6",
|
|
.pin = LED6_PIN,
|
|
.mode = LED6_MODE,
|
|
.flags = SAUL_GPIO_INVERTED,
|
|
},
|
|
{
|
|
.name = "LED7",
|
|
.pin = LED7_PIN,
|
|
.mode = LED7_MODE,
|
|
.flags = SAUL_GPIO_INVERTED,
|
|
},
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* GPIO_PARAMS_H */
|
|
/** @} */
|