2019-10-13 17:18:08 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Kees Bakker, SODAQ
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup boards_common_sodaq SODAQ boards common
|
|
|
|
* @ingroup boards_common
|
|
|
|
* @brief Common support for all SODAQ boards
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief Board common definitions for the SODAQ boards
|
|
|
|
*
|
|
|
|
* @author Kees Bakker <kees@sodaq.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BOARD_COMMON_H
|
|
|
|
#define BOARD_COMMON_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2020-06-07 22:23:42 +02:00
|
|
|
/**
|
|
|
|
* @name xtimer configuration
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#define XTIMER_DEV TIMER_DEV(1)
|
|
|
|
#define XTIMER_CHAN (0)
|
|
|
|
/** @} */
|
|
|
|
|
2019-10-13 17:18:08 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* BOARD_COMMON_H */
|
|
|
|
/** @} */
|