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>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BOARD_H_
|
|
|
|
#define BOARD_H_
|
|
|
|
|
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-01-05 12:07:48 +01:00
|
|
|
* @brief Use the 2nd UART for STDIO on this board
|
2015-12-01 16:16:57 +01:00
|
|
|
*/
|
2016-03-09 19:39:34 +01:00
|
|
|
#define UART_STDIO_DEV UART_DEV(1)
|
2015-12-01 16:16:57 +01:00
|
|
|
|
2016-03-01 14:10:04 +01:00
|
|
|
/**
|
|
|
|
* @name xtimer configuration
|
|
|
|
*/
|
|
|
|
#define XTIMER_MASK (0xffff0000)
|
|
|
|
#define XTIMER_BACKOFF 5
|
|
|
|
/** @} */
|
|
|
|
|
2015-12-01 16:16:57 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* BOARD_H_ */
|
|
|
|
/** @} */
|