1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/sys/net/gnrc/netif/init_devs/auto_init_enc28j60.c
2022-09-18 18:35:21 +02:00

70 lines
1.7 KiB
C

/*
* Copyright (C) 2015 Kaspar Schleiser <kaspar@schleiser.de>
* 2015 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 ENC28j60 Ethernet devices
*
* @author Kaspar Schleiser <kaspar@schleiser.de>
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
*/
#include "log.h"
#include "enc28j60.h"
#include "enc28j60_params.h"
#include "net/gnrc/netif/ethernet.h"
#include "include/init_devs.h"
/**
* @brief Define stack parameters for the MAC layer thread
* @{
*/
#define ENC28J60_MAC_STACKSIZE (GNRC_NETIF_STACKSIZE_DEFAULT)
#ifndef ENC28J60_MAC_PRIO
#define ENC28J60_MAC_PRIO (GNRC_NETIF_PRIO)
#endif
/*** @} */
/**
* @brief Find out how many of these devices we need to care for
*/
#define ENC28J60_NUM ARRAY_SIZE(enc28j60_params)
/**
* @brief Allocate memory for the device descriptors
* @{
*/
static enc28j60_t dev[ENC28J60_NUM];
/** @} */
static gnrc_netif_t _netif[ENC28J60_NUM];
/**
* @brief Stacks for the MAC layer threads
*/
static char stack[ENC28J60_NUM][ENC28J60_MAC_STACKSIZE];
void auto_init_enc28j60(void)
{
for (unsigned i = 0; i < ENC28J60_NUM; i++) {
LOG_DEBUG("[auto_init_netif] initializing enc28j60 #%u\n", i);
/* setup netdev device */
enc28j60_setup(&dev[i], &enc28j60_params[i], i);
gnrc_netif_ethernet_create(&_netif[i], stack[i], ENC28J60_MAC_STACKSIZE,
ENC28J60_MAC_PRIO, "enc28j60",
&dev[i].netdev);
}
}
/** @} */