2015-12-01 16:16:57 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 TriaGnoSys GmbH
|
|
|
|
*
|
|
|
|
* 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_nucleo-f103 Nucleo-F103
|
|
|
|
* @ingroup boards
|
|
|
|
* @brief Board specific files for the nucleo-f103 board
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief Board specific definitions for the nucleo-f103 board
|
|
|
|
*
|
|
|
|
* @author Víctor Ariño <victor.arino@triagnosys.com>
|
|
|
|
*/
|
|
|
|
|
2017-01-18 13:00:05 +01:00
|
|
|
#ifndef BOARD_H
|
|
|
|
#define BOARD_H
|
2015-12-01 16:16:57 +01:00
|
|
|
|
2016-03-11 15:01:58 +01:00
|
|
|
#include "board_common.h"
|
2015-12-01 16:16:57 +01:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2016-03-01 14:10:04 +01:00
|
|
|
/**
|
|
|
|
* @name xtimer configuration
|
|
|
|
*/
|
2016-05-06 22:10:52 +02:00
|
|
|
#define XTIMER_WIDTH (16)
|
2016-03-01 14:10:04 +01:00
|
|
|
#define XTIMER_BACKOFF 5
|
|
|
|
/** @} */
|
|
|
|
|
2015-12-01 16:16:57 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-01-18 13:00:05 +01:00
|
|
|
#endif /* BOARD_H */
|
2015-12-01 16:16:57 +01:00
|
|
|
/** @} */
|