Merge pull request #7732 from smlng/board/xtimer_width

boards: add missing XTIMER_WIDTH
This commit is contained in:
Sebastian Meiling 2017-10-13 20:33:03 +02:00 committed by GitHub
commit c0a4f4de68
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