mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-21 04:23:50 +01:00
45 lines
824 B
C
45 lines
824 B
C
/*
|
|
* SPDX-FileCopyrightText: 2016 Freie Universität Berlin
|
|
* SPDX-License-Identifier: LGPL-2.1-only
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
/**
|
|
* @addtogroup drivers_socket_zep
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
* @brief Configuration parameters for the @ref drivers_socket_zep driver
|
|
* @author Martine Lenders <m.lenders@fu-berlin.de>
|
|
*/
|
|
|
|
#include "socket_zep.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @brief Number of allocated parameters at @ref socket_zep_params
|
|
*
|
|
* @note This was decided to only be confiruable on compile-time to be
|
|
* more similar to actual boards
|
|
*/
|
|
#if !defined(SOCKET_ZEP_MAX) || defined(DOXYGEN)
|
|
# define SOCKET_ZEP_MAX (1)
|
|
#endif
|
|
|
|
/**
|
|
* @brief socket_zep configurations
|
|
*/
|
|
extern socket_zep_params_t socket_zep_params[SOCKET_ZEP_MAX];
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/** @} */
|