mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-19 19:43:52 +01:00
44 lines
652 B
C
44 lines
652 B
C
/*
|
|
* SPDX-FileCopyrightText: 2021 Lokotius Filzer
|
|
* SPDX-License-Identifier: LGPL-2.1-only
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
/**
|
|
* @ingroup boards_bastwan
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Board specific configuration of direct mapped GPIOs
|
|
*
|
|
* @author Lokotius Filzer <h-filzer@pixelsalat.de>
|
|
*/
|
|
|
|
#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[] =
|
|
{
|
|
{
|
|
.name = "LED(blue)",
|
|
.pin = LED0_PIN,
|
|
.mode = GPIO_OUT,
|
|
.flags = SAUL_GPIO_INIT_CLEAR,
|
|
},
|
|
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/** @} */
|