mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
61 lines
1.4 KiB
C
61 lines
1.4 KiB
C
/*
|
|
* Copyright (C) 2015 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 auto_init_gnrc_netif
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Auto initialization for XBee network interfaces
|
|
*
|
|
* @author Kaspar Schleiser <kaspar@schleiser.de>
|
|
*/
|
|
|
|
#ifdef MODULE_SLIPDEV
|
|
|
|
#include "log.h"
|
|
#include "board.h"
|
|
#include "net/gnrc/netif/raw.h"
|
|
#include "net/gnrc.h"
|
|
|
|
#include "slipdev.h"
|
|
#include "slipdev_params.h"
|
|
|
|
#define SLIPDEV_NUM (sizeof(slipdev_params)/sizeof(slipdev_params_t))
|
|
|
|
/**
|
|
* @brief Define stack parameters for the MAC layer thread
|
|
* @{
|
|
*/
|
|
#define SLIPDEV_STACKSIZE (THREAD_STACKSIZE_DEFAULT)
|
|
#ifndef SLIPDEV_PRIO
|
|
#define SLIPDEV_PRIO (GNRC_NETIF_PRIO)
|
|
#endif
|
|
|
|
static slipdev_t slipdevs[SLIPDEV_NUM];
|
|
static char _slipdev_stacks[SLIPDEV_NUM][SLIPDEV_STACKSIZE];
|
|
|
|
void auto_init_slipdev(void)
|
|
{
|
|
for (unsigned i = 0; i < SLIPDEV_NUM; i++) {
|
|
const slipdev_params_t *p = &slipdev_params[i];
|
|
|
|
LOG_DEBUG("[auto_init_netif] initializing slip #%u\n", i);
|
|
|
|
slipdev_setup(&slipdevs[i], p);
|
|
gnrc_netif_raw_create(_slipdev_stacks[i], SLIPDEV_STACKSIZE,
|
|
SLIPDEV_PRIO, "slipdev",
|
|
(netdev_t *)&slipdevs[i]);
|
|
}
|
|
}
|
|
#else
|
|
typedef int dont_be_pedantic;
|
|
#endif /* MODULE_SLIPDEV */
|
|
/** @} */
|