1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-26 15:03:53 +01:00

Merge pull request #7522 from haukepetersen/fix_samd21_xtimercfg

boards/samd21-based: fix xtimer configuration
This commit is contained in:
Alexandre Abadie 2017-08-28 17:31:50 +02:00 committed by GitHub
commit 35ca6daeb6
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)
/** @} */