mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-15 17:43:51 +01:00
38 lines
698 B
C
38 lines
698 B
C
/*
|
|
* SPDX-FileCopyrightText: 2018 Gunar Schorcht
|
|
* SPDX-License-Identifier: LGPL-2.1-only
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
/**
|
|
* @ingroup boards_esp8266_esp-12x
|
|
* @brief Board specific definitions for ESP-12x based boards.
|
|
* @file
|
|
* @author Gunar Schorcht <gunar@schorcht.net>
|
|
* @{
|
|
*/
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @name On-board LED configuration and control definitions
|
|
* @{
|
|
*/
|
|
#define LED0_PIN GPIO2 /**< GPIO2 is used as LED Pin */
|
|
#define LED0_ACTIVE (0) /**< LED is low active */
|
|
/** @} */
|
|
|
|
#ifdef __cplusplus
|
|
} /* end extern "C" */
|
|
#endif
|
|
|
|
/* include common board definitions as last step */
|
|
#include "board_common.h"
|
|
|
|
/** @} */
|