2016-02-04 14:29:09 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Freie Universität Berlin
|
|
|
|
*
|
|
|
|
* 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_nrf52dk
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief Configuration of SAUL mapped GPIO pins
|
|
|
|
*
|
|
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GPIO_PARAMS_H
|
|
|
|
#define GPIO_PARAMS_H
|
|
|
|
|
|
|
|
#include "board.h"
|
|
|
|
#include "saul/periph.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief LED configuration
|
|
|
|
*/
|
|
|
|
static const saul_gpio_params_t saul_gpio_params[] =
|
|
|
|
{
|
|
|
|
{
|
|
|
|
.name = "LED 1",
|
2016-03-11 18:04:26 +01:00
|
|
|
.pin = LED0_PIN,
|
2016-02-20 17:21:55 +01:00
|
|
|
.mode = GPIO_OUT
|
2016-02-04 14:29:09 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "LED 2",
|
2016-03-11 18:04:26 +01:00
|
|
|
.pin = LED1_PIN,
|
2016-02-20 17:21:55 +01:00
|
|
|
.mode = GPIO_OUT
|
2016-02-04 14:29:09 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "LED 3",
|
2016-03-11 18:04:26 +01:00
|
|
|
.pin = LED2_PIN,
|
2016-02-20 17:21:55 +01:00
|
|
|
.mode = GPIO_OUT
|
2016-02-04 14:29:09 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "LED 4",
|
2016-03-11 18:04:26 +01:00
|
|
|
.pin = LED3_PIN,
|
2016-02-20 17:21:55 +01:00
|
|
|
.mode = GPIO_OUT
|
2016-02-04 14:29:09 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "Button 1",
|
|
|
|
.pin = BUTTON1_PIN,
|
2016-02-20 17:21:55 +01:00
|
|
|
.mode = GPIO_IN_PU
|
2016-02-04 14:29:09 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "Button 2",
|
|
|
|
.pin = BUTTON2_PIN,
|
2016-02-20 17:21:55 +01:00
|
|
|
.mode = GPIO_IN_PU
|
2016-02-04 14:29:09 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "Button 3",
|
|
|
|
.pin = BUTTON3_PIN,
|
2016-02-20 17:21:55 +01:00
|
|
|
.mode = GPIO_IN_PU
|
2016-02-04 14:29:09 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "Button 4",
|
|
|
|
.pin = BUTTON4_PIN,
|
2016-02-20 17:21:55 +01:00
|
|
|
.mode = GPIO_IN_PU
|
2016-02-04 14:29:09 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* GPIO_PARAMS_H */
|
|
|
|
/** @} */
|