1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

boards: add missing XTIMER_WIDTH

This commit is contained in:
smlng 2017-10-13 10:53:11 +02:00
parent 1fec7e690c
commit 25378c7dd5
2 changed files with 14 additions and 0 deletions

View File

@ -44,6 +44,13 @@ extern "C" {
#define LED0_TOGGLE (LED0_PORT->ODR ^= LED0_MASK)
/** @} */
/**
* @name xtimer configuration
* @{
*/
#define XTIMER_WIDTH (16U)
/** @} */
/**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/

View File

@ -25,6 +25,13 @@
#include "board_common.h"
/**
* @name xtimer configuration
* @{
*/
#define XTIMER_WIDTH (16U)
/** @} */
#ifdef __cplusplus
extern "C" {}
#endif