1 /*
2  * SPDX-FileCopyrightText: 2019-2022 Espressif Systems (Shanghai) CO LTD
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef _SUPPLICANT_OPT_H
8 #define _SUPPLICANT_OPT_H
9 
10 #include "sdkconfig.h"
11 
12 #if CONFIG_ESP_WIFI_DEBUG_PRINT
13 #define DEBUG_PRINT
14 #if defined(CONFIG_LOG_DEFAULT_LEVEL_DEBUG) || defined(CONFIG_LOG_DEFAULT_LEVEL_VERBOSE)
15 #define ELOOP_DEBUG
16 #endif
17 #endif
18 
19 #if CONFIG_ESP_WIFI_SCAN_CACHE
20 #define SCAN_CACHE_SUPPORTED
21 #endif
22 
23 #endif /* _SUPPLICANT_OPT_H */
24