2017-02-02 20:01:11 +01:00
|
|
|
/*
|
2019-02-17 14:05:48 +01:00
|
|
|
* Copyright (C) 2019 Otto-von-Guericke-Universität Magdeburg
|
2017-02-02 20:01:11 +01: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-11-30 23:34:07 +01:00
|
|
|
* @ingroup boards_common_arduino-atmega
|
2017-02-02 20:01:11 +01:00
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
2017-04-18 11:18:26 +02:00
|
|
|
* @brief Common configuration of MCU periphery for Arduino Atmega boards
|
2017-02-02 20:01:11 +01:00
|
|
|
*
|
2019-02-17 14:05:48 +01:00
|
|
|
* @author Marian Buschsieweke <marian.buschsieweke@ovgu.de>
|
2017-02-02 20:01:11 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PERIPH_CONF_H
|
|
|
|
#define PERIPH_CONF_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2019-02-17 14:05:48 +01:00
|
|
|
/*
|
|
|
|
* Any overwrites of the common ATmega periph config would come here, as needs
|
|
|
|
* to be placed before the include. (Currently none needed.)
|
2017-08-03 14:02:21 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/** @} */
|
|
|
|
|
2017-02-02 20:01:11 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-02-17 14:05:48 +01:00
|
|
|
#include "periph_conf_atmega_common.h"
|
|
|
|
|
2017-02-02 20:01:11 +01:00
|
|
|
#endif /* PERIPH_CONF_H */
|