1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/sys/auto_init/netif/auto_init_cc110x.c

86 lines
2.4 KiB
C

/*
* Copyright (C) 2015 Kaspar Schleiser <kaspar@schleiser.de>
* 2016 Freie Universität Berlin
*
* 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 sys_auto_init_gnrc_netif
* @{
*
* @file
* @brief Auto initialization for cc110x network interfaces
*
* @author Kaspar Schleiser <kaspar@schleiser.de>
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
*/
#ifdef MODULE_CC110X
#include "cc110x.h"
#include "cc1xxx_common.h"
#include "cc110x_params.h"
#include "log.h"
#include "msg.h"
#include "net/gnrc/netif/conf.h" /* <- CONFIG_GNRC_NETIF_MSG_QUEUE_SIZE */
#define ENABLE_DEBUG (0)
#include "debug.h"
#ifndef CC110X_EXTRA_STACKSIZE
/**
* @brief Additional stack size required by the driver
*
* With increasing of CONFIG_GNRC_NETIF_MSG_QUEUE_SIZE the required stack size
* increases as well. A queue size of 8 messages works with default stack size,
* so we increase the stack by `sizeof(msg_t)` for each additional element
*/
#define CC110X_EXTRA_STACKSIZE ((CONFIG_GNRC_NETIF_MSG_QUEUE_SIZE - 8) * sizeof(msg_t))
#endif
/**
* @brief Calculate the stack size for the MAC layer thread(s)
*/
#define CC110X_MAC_STACKSIZE (THREAD_STACKSIZE_DEFAULT + \
CC110X_EXTRA_STACKSIZE + \
DEBUG_EXTRA_STACKSIZE)
#ifndef CC110X_MAC_PRIO
/**
* @brief The priority of the MAC layer thread
*/
#define CC110X_MAC_PRIO (GNRC_NETIF_PRIO)
#endif
/**
* @brief Calculate the number of configured CC1100/CC1101 transceivers
*/
#define CC110X_NUM ARRAY_SIZE(cc110x_params)
/**
* @brief Statically allocate memory for device descriptors
*/
cc110x_t _cc110x_devs[CC110X_NUM];
/**
* @brief Statically allocate memory for the MAC layer thread(s)
*/
static char stacks[CC110X_NUM][CC110X_MAC_STACKSIZE];
void auto_init_cc110x(void)
{
for (unsigned i = 0; i < CC110X_NUM; i++) {
LOG_DEBUG("[auto_init_netif] initializing cc110x #%u\n", i);
cc110x_setup(&_cc110x_devs[i], &cc110x_params[i]);
gnrc_netif_cc1xxx_create(stacks[i], CC110X_MAC_STACKSIZE, CC110X_MAC_PRIO,
"cc110x", (netdev_t *)&_cc110x_devs[i]);
}
}
#else
typedef int dont_be_pedantic;
#endif /* MODULE_CC110X */
/** @} */