1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-15 17:43:51 +01:00
RIOT/tests/drivers/w5100/init_dev.h
2025-09-08 15:19:11 +02:00

45 lines
727 B
C

/*
* Copyright (C) 2022 HAW Hamburg
*
* 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.
*/
#pragma once
/**
* @ingroup tests
* @{
*
* @file
* @brief Device-specific test header file W5100 ethernet device driver
*
* @author Leandro Lanzieri <leandro.lanzieri@haw-hamburg.de>
*/
#include <stdint.h>
#include "kernel_defines.h"
#include "net/netdev.h"
#include "w5100.h"
#include "w5100_params.h"
#ifdef __cplusplus
extern "C" {
#endif
#define W5100_NUM ARRAY_SIZE(w5100_params)
#define NETDEV_ETH_MINIMAL_NUMOF W5100_NUM
/**
* @}
*/
#ifdef __cplusplus
}
#endif
/** @} */