2015-03-24 18:01:40 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Martine Lenders <mlenders@inf.fu-berlin.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 tests
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
2015-08-19 12:38:38 +02:00
|
|
|
* @brief slip parameters example, used by auto_init_gnrc_netif
|
2015-03-24 18:01:40 +01:00
|
|
|
*
|
|
|
|
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SLIP_PARAMS_H
|
|
|
|
#define SLIP_PARAMS_H
|
|
|
|
|
2015-08-17 15:41:29 +02:00
|
|
|
#include "net/gnrc/slip.h"
|
2015-05-26 18:59:36 +02:00
|
|
|
|
2015-03-24 18:01:40 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-06-01 16:41:03 +02:00
|
|
|
static gnrc_slip_params_t gnrc_slip_params[] = {
|
2015-03-24 18:01:40 +01:00
|
|
|
{
|
|
|
|
.uart = SLIP_UART,
|
|
|
|
.baudrate = SLIP_BAUDRATE,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* SLIP_PARAMS_H */
|
|
|
|
/** @} */
|