mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
52 lines
1.0 KiB
C
52 lines
1.0 KiB
C
|
/*
|
||
|
* Copyright (C) 2018 Gunar Schorcht
|
||
|
*
|
||
|
* 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 cpu_esp32_esp_wifi
|
||
|
* @{
|
||
|
*
|
||
|
* @file
|
||
|
* @brief Parameters for the netdev interface for ESP WiFi module
|
||
|
*
|
||
|
* @author Gunar Schorcht <gunar@schorcht.net>
|
||
|
*/
|
||
|
|
||
|
#ifndef ESP_WIFI_PARAMS_H
|
||
|
#define ESP_WIFI_PARAMS_H
|
||
|
|
||
|
#if defined(MODULE_ESP_WIFI) || defined(DOXYGEN)
|
||
|
|
||
|
/**
|
||
|
* @name Set default configuration parameters for the ESP WiFi netdev driver
|
||
|
* @{
|
||
|
*/
|
||
|
#ifndef ESP_WIFI_STACKSIZE
|
||
|
/** The size of the stack used for the ESP WiFi netdev driver thread */
|
||
|
#define ESP_WIFI_STACKSIZE THREAD_STACKSIZE_DEFAULT
|
||
|
#endif
|
||
|
|
||
|
#ifndef ESP_WIFI_PRIO
|
||
|
/** The priority of the ESP WiFi netdev driver thread */
|
||
|
#define ESP_WIFI_PRIO GNRC_NETIF_PRIO
|
||
|
#endif
|
||
|
|
||
|
/**@}*/
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* MODULE_ESP_WIFI || DOXYGEN */
|
||
|
|
||
|
#endif /* ESP_WIFI_PARAMS_H */
|
||
|
/**@}*/
|