2015-06-12 16:30:45 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Freie Universität Berlin
|
|
|
|
*
|
|
|
|
* 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 native_cpu
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief CPU specific definitions for internal peripheral handling
|
|
|
|
*
|
2017-01-19 21:45:23 +01:00
|
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
2015-06-12 16:30:45 +02:00
|
|
|
*/
|
|
|
|
|
2017-01-18 13:00:05 +01:00
|
|
|
#ifndef PERIPH_CPU_H
|
|
|
|
#define PERIPH_CPU_H
|
2015-06-12 16:30:45 +02:00
|
|
|
|
|
|
|
#include "periph/dev_enums.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2016-02-07 20:35:27 +01:00
|
|
|
/**
|
|
|
|
* @brief Length of the CPU_ID in octets
|
|
|
|
*/
|
|
|
|
#ifndef CPUID_LEN
|
|
|
|
#define CPUID_LEN (4U)
|
|
|
|
#endif
|
2015-06-12 16:30:45 +02:00
|
|
|
|
2017-06-02 12:21:56 +02:00
|
|
|
/**
|
|
|
|
* @brief Prevent shared timer functions from being used
|
|
|
|
*/
|
|
|
|
#define PERIPH_TIMER_PROVIDES_SET
|
|
|
|
|
2017-10-12 16:20:15 +02:00
|
|
|
/**
|
|
|
|
* @name Power management configuration
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#define PROVIDES_PM_OFF
|
|
|
|
/** @} */
|
|
|
|
|
2015-06-12 16:30:45 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-01-18 13:00:05 +01:00
|
|
|
#endif /* PERIPH_CPU_H */
|
2015-06-12 16:30:45 +02:00
|
|
|
/** @} */
|