mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-16 18:13:49 +01:00
33 lines
579 B
C
33 lines
579 B
C
/*
|
|
* SPDX-FileCopyrightText: 2016-2017 Inria
|
|
* SPDX-License-Identifier: LGPL-2.1-only
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
/**
|
|
* @defgroup boards_common_arduino-mkr Arduino MKR Common
|
|
* @ingroup boards_common
|
|
* @brief Shared files and configuration for the Arduino MKR boards type.
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Board specific definitions for the Arduino MKR
|
|
* board
|
|
*
|
|
* @author Alexandre Abadie <alexandre.abadie@inria.fr>
|
|
*/
|
|
|
|
#include "cpu.h"
|
|
#include "arduino_pinmap.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/** @} */
|