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

boards/samd21-based: fix xtimer configuration

This commit is contained in:
Hauke Petersen 2017-08-28 16:38:27 +02:00
parent ac95d429f5
commit 38395fa9bb
3 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@ extern "C" {
* @name xtimer configuration
* @{
*/
#define XTIMER TIMER_0
#define XTIMER TIMER_DEV(1)
#define XTIMER_CHAN (0)
/** @} */

View File

@ -37,7 +37,7 @@ extern "C" {
* @name xtimer configuration
* @{
*/
#define XTIMER_DEV TIMER_1
#define XTIMER_DEV TIMER_DEV(1)
#define XTIMER_CHAN (0)
/** @} */

View File

@ -35,7 +35,7 @@ extern "C" {
* @name xtimer configuration
* @{
*/
#define XTIMER_DEV TIMER_1
#define XTIMER_DEV TIMER_DEV(1)
#define XTIMER_CHAN (0)
/** @} */