esp_eth_params.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2018 Gunar Schorcht
3  *
4  * This file is subject to the terms and conditions of the GNU Lesser
5  * General Public License v2.1. See the file LICENSE in the top level
6  * directory for more details.
7  */
8 
19 #ifndef ESP_ETH_PARAMS_H
20 #define ESP_ETH_PARAMS_H
21 
22 #if defined(MODULE_ESP_ETH) || defined(DOXYGEN)
23 
28 #ifndef ESP_ETH_STACKSIZE
29 
30 #define ESP_ETH_STACKSIZE THREAD_STACKSIZE_DEFAULT
31 #endif
32 
33 #ifndef ESP_ETH_PRIO
34 
35 #define ESP_ETH_PRIO GNRC_NETIF_PRIO
36 #endif
37 
38 #ifdef __cplusplus
39 extern "C" {
40 #endif
41 
42 #ifdef __cplusplus
43 }
44 #endif
45 
46 #endif /* MODULE_ESP_ETH || DOXYGEN */
47 
48 #endif /* ESP_ETH_PARAMS_H */
49