2015-06-03 18:25:42 +02:00
|
|
|
/*
|
2016-02-08 21:50:24 +01:00
|
|
|
* Copyright (C) 2015-2016 Freie Universität Berlin
|
2015-06-03 18:25:42 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ingroup cpu_stm32f0
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief CPU specific definitions for internal peripheral handling
|
|
|
|
*
|
|
|
|
* @author Hauke Petersen <hauke.peterse@fu-berlin.de>
|
|
|
|
*/
|
|
|
|
|
2016-02-08 21:50:24 +01:00
|
|
|
#ifndef PERIPH_CPU_H
|
|
|
|
#define PERIPH_CPU_H
|
2015-06-03 18:25:42 +02:00
|
|
|
|
2016-02-08 21:50:24 +01:00
|
|
|
#include "periph_cpu_common.h"
|
2015-06-03 18:25:42 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2016-02-08 21:54:37 +01:00
|
|
|
/* to be filled */
|
2015-06-03 18:25:42 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-02-08 21:50:24 +01:00
|
|
|
#endif /* PERIPH_CPU_H */
|
2015-06-03 18:25:42 +02:00
|
|
|
/** @} */
|