2016-09-05 10:35:21 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 Freie Universität Berlin
|
|
|
|
* Copyright (C) 2015 Zolertia SL
|
2017-07-06 13:39:52 +02:00
|
|
|
* 2017 HAW Hamburg
|
2016-09-05 10:35:21 +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-13 17:13:14 +02:00
|
|
|
* @ingroup boards_remote-revb
|
2016-09-05 10:35:21 +02:00
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief Peripheral MCU configuration for the RE-Mote board revision B
|
|
|
|
*
|
|
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
2017-07-06 13:39:52 +02:00
|
|
|
* @author Antonio Lignan <alinan@zolertia.com>
|
|
|
|
* @author Sebastian Meiling <s@mlng.net>
|
2016-09-05 10:35:21 +02:00
|
|
|
*/
|
|
|
|
|
2017-01-18 13:00:05 +01:00
|
|
|
#ifndef PERIPH_CONF_H
|
|
|
|
#define PERIPH_CONF_H
|
2016-09-05 10:35:21 +02:00
|
|
|
|
2020-01-08 14:40:20 +01:00
|
|
|
#include "cfg_adc_default.h"
|
|
|
|
#include "cfg_clk_default.h"
|
|
|
|
#include "cfg_i2c_default.h"
|
|
|
|
#include "cfg_spi_default.h"
|
|
|
|
#include "cfg_timer_default.h"
|
|
|
|
#include "cfg_uart_default.h"
|
2016-09-05 10:35:21 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2020-01-08 14:40:20 +01:00
|
|
|
extern "C" {
|
2016-09-05 10:35:21 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* end extern "C" */
|
|
|
|
#endif
|
|
|
|
|
2017-01-18 13:00:05 +01:00
|
|
|
#endif /* PERIPH_CONF_H */
|
2016-09-05 10:35:21 +02:00
|
|
|
/** @} */
|