2017-04-05 22:09:45 +02:00
|
|
|
/*
|
2017-05-23 10:25:45 +02:00
|
|
|
* Copyright (C) 2016-2017 Inria
|
|
|
|
* 2016 Freie Universität Berlin
|
2017-04-05 22:09:45 +02:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2017-04-10 09:38:37 +02:00
|
|
|
* @ingroup boards_arduino-mkr-common
|
2017-04-05 22:09:45 +02:00
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief Board specific configuration of direct mapped GPIOs
|
|
|
|
*
|
|
|
|
* @author Alexandre Abadie <alexandre.abadie@inria.fr>
|
2017-05-23 10:25:45 +02:00
|
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
2017-04-05 22:09:45 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GPIO_PARAMS_H
|
|
|
|
#define GPIO_PARAMS_H
|
|
|
|
|
|
|
|
#include "board.h"
|
|
|
|
#include "saul/periph.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief GPIO pin configuration
|
|
|
|
*/
|
|
|
|
static const saul_gpio_params_t saul_gpio_params[] =
|
|
|
|
{
|
|
|
|
{
|
2017-04-10 09:38:37 +02:00
|
|
|
.name = "LED(Green)",
|
2017-04-05 22:09:45 +02:00
|
|
|
.pin = LED0_PIN,
|
|
|
|
.mode = GPIO_OUT
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* GPIO_PARAMS_H */
|
|
|
|
/** @} */
|