2015-05-08 15:50:35 +02:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2015-08-19 12:38:38 +02:00
|
|
|
* @ingroup auto_init_gnrc_netif
|
2015-05-08 15:50:35 +02:00
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief Auto initialization for nx_at86rf2xx network interfaces
|
|
|
|
*
|
|
|
|
* @author Kaspar Schleiser <kaspar@schleiser.de>
|
|
|
|
*/
|
|
|
|
|
2015-08-09 21:24:55 +02:00
|
|
|
#ifdef MODULE_AT86RF2XX
|
2015-05-08 15:50:35 +02:00
|
|
|
|
|
|
|
#include "board.h"
|
2015-08-17 15:41:29 +02:00
|
|
|
#include "net/gnrc/nomac.h"
|
2015-08-10 02:41:08 +02:00
|
|
|
#include "net/gnrc.h"
|
2015-05-08 15:50:35 +02:00
|
|
|
|
2015-08-09 21:24:55 +02:00
|
|
|
#include "at86rf2xx.h"
|
|
|
|
#include "at86rf2xx_params.h"
|
2015-05-08 15:50:35 +02:00
|
|
|
|
|
|
|
#define ENABLE_DEBUG (0)
|
|
|
|
#include "debug.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Define stack parameters for the MAC layer thread
|
|
|
|
* @{
|
|
|
|
*/
|
2015-04-28 20:02:05 +02:00
|
|
|
#define AT86RF2XX_MAC_STACKSIZE (THREAD_STACKSIZE_DEFAULT)
|
2015-07-29 13:51:07 +02:00
|
|
|
#define AT86RF2XX_MAC_PRIO (THREAD_PRIORITY_MAIN - 4)
|
2015-05-08 15:50:35 +02:00
|
|
|
|
|
|
|
#define AT86RF2XX_NUM (sizeof(at86rf2xx_params)/sizeof(at86rf2xx_params[0]))
|
|
|
|
|
2015-08-09 21:24:55 +02:00
|
|
|
static at86rf2xx_t at86rf2xx_devs[AT86RF2XX_NUM];
|
2015-05-08 15:50:35 +02:00
|
|
|
static char _nomac_stacks[AT86RF2XX_MAC_STACKSIZE][AT86RF2XX_NUM];
|
|
|
|
|
2015-08-09 21:24:55 +02:00
|
|
|
void auto_init_at86rf2xx(void)
|
2015-05-08 15:50:35 +02:00
|
|
|
{
|
2015-11-28 12:46:30 +01:00
|
|
|
for (unsigned i = 0; i < AT86RF2XX_NUM; i++) {
|
2015-05-08 15:50:35 +02:00
|
|
|
DEBUG("Initializing AT86RF2xx radio at SPI_%i\n", i);
|
|
|
|
const at86rf2xx_params_t *p = &at86rf2xx_params[i];
|
2015-08-09 21:24:55 +02:00
|
|
|
int res = at86rf2xx_init(&at86rf2xx_devs[i],
|
|
|
|
p->spi,
|
|
|
|
p->spi_speed,
|
|
|
|
p->cs_pin,
|
|
|
|
p->int_pin,
|
|
|
|
p->sleep_pin,
|
|
|
|
p->reset_pin);
|
2015-05-08 15:50:35 +02:00
|
|
|
|
|
|
|
if (res < 0) {
|
2015-11-19 16:24:55 +01:00
|
|
|
DEBUG("Error initializing AT86RF2xx radio device!\n");
|
2015-05-08 15:50:35 +02:00
|
|
|
}
|
|
|
|
else {
|
2015-08-17 15:41:29 +02:00
|
|
|
gnrc_nomac_init(_nomac_stacks[i],
|
|
|
|
AT86RF2XX_MAC_STACKSIZE, AT86RF2XX_MAC_PRIO,
|
|
|
|
"at86rfxx", (gnrc_netdev_t *)&at86rf2xx_devs[i]);
|
2015-05-08 15:50:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-05-27 21:52:49 +02:00
|
|
|
#else
|
|
|
|
typedef int dont_be_pedantic;
|
2015-08-09 21:24:55 +02:00
|
|
|
#endif /* MODULE_AT86RF2XX */
|
2015-05-08 15:50:35 +02:00
|
|
|
|
|
|
|
/** @} */
|