mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
05f114d0af
- most were trivial - missing group close or open - extra space - no doxygen comment - name commad might open an implicit group this hould also be implicit cosed but does not happen somtimes - crazy: internal declared groups have to be closed internal
49 lines
965 B
C
49 lines
965 B
C
/*
|
|
* Copyright (C) 2016 Kaspar Schleiser <kaspar@schleiser.de>
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
/**
|
|
* @ingroup drivers_ethos
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Default configuration for the ethos device driver
|
|
*
|
|
* @author Kaspar Schleiser <kaspar@schleiser.de>
|
|
*/
|
|
#ifndef ETHOS_PARAMS_H
|
|
#define ETHOS_PARAMS_H
|
|
|
|
#include "board.h"
|
|
#include "ethos.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifndef ETHOS_PARAMS
|
|
#define ETHOS_PARAMS { .uart = ETHOS_UART, \
|
|
.baudrate = ETHOS_BAUDRATE }
|
|
#endif
|
|
|
|
/**
|
|
* @brief ethos configuration
|
|
*
|
|
* The first element in this array will be used to multiplex stdio if
|
|
* `stdio_ethos` is included.
|
|
*/
|
|
static const ethos_params_t ethos_params[] = {
|
|
ETHOS_PARAMS
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* ETHOS_PARAMS_H */
|
|
/** @} */
|