2017-01-18 22:43:03 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Inria
|
|
|
|
*
|
|
|
|
* 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-f411 Nucleo-F411
|
2017-07-05 09:17:57 +02:00
|
|
|
* @ingroup boards_nucleo
|
2017-01-18 22:43:03 +01:00
|
|
|
* @brief Board specific files for the nucleo-f411 board
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief Board specific definitions for the nucleo-f411 board
|
|
|
|
*
|
|
|
|
* @author Alexandre Abadie <alexandre.abadie@inria.fr>
|
|
|
|
*/
|
|
|
|
|
2017-05-23 18:19:52 +02:00
|
|
|
#ifndef BOARD_H
|
|
|
|
#define BOARD_H
|
2017-01-18 22:43:03 +01:00
|
|
|
|
|
|
|
#include "board_common.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
2017-04-10 19:04:32 +02:00
|
|
|
* @name xtimer configuration
|
2017-01-18 22:43:03 +01:00
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#define XTIMER_OVERHEAD (6)
|
|
|
|
#define XTIMER_BACKOFF (5)
|
|
|
|
/** @} */
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-05-23 18:19:52 +02:00
|
|
|
#endif /* BOARD_H */
|
2017-01-18 22:43:03 +01:00
|
|
|
/** @} */
|