mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
efeaac51ca
Extending netif_t struct from sys/net/netif to support the stack-independent API.
43 lines
914 B
C
43 lines
914 B
C
/*
|
|
* Copyright (C) Wouter Symons
|
|
*
|
|
* 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_lwip_netif
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Auto initialization for stm32_eth network interfaces
|
|
*
|
|
* @author Wouter Symons <wsymons@nalys-group.com>
|
|
* @author Erik Ekman <eekman@google.com>
|
|
*/
|
|
|
|
#include "stm32_eth.h"
|
|
|
|
#include "lwip_init_devs.h"
|
|
|
|
#define ENABLE_DEBUG 0
|
|
#include "debug.h"
|
|
|
|
static netdev_t stm32_eth;
|
|
extern void stm32_eth_netdev_setup(netdev_t *netdev);
|
|
|
|
static lwip_netif_t netif;
|
|
|
|
static void auto_init_stm32_eth(void)
|
|
{
|
|
stm32_eth_netdev_setup(&stm32_eth);
|
|
if (lwip_add_ethernet(&netif, &stm32_eth) == NULL) {
|
|
DEBUG("Could not add stm32_eth device\n");
|
|
return;
|
|
}
|
|
}
|
|
|
|
LWIP_INIT_ETH_NETIF(auto_init_stm32_eth);
|
|
/** @} */
|