2020-07-27 05:11:40 -04:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2019-2022 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2018-08-13 04:37:56 -04:00
|
|
|
|
|
|
|
#ifndef _SUPPLICANT_OPT_H
|
|
|
|
#define _SUPPLICANT_OPT_H
|
|
|
|
|
|
|
|
#include "sdkconfig.h"
|
|
|
|
|
2023-02-10 18:38:45 -05:00
|
|
|
#if CONFIG_ESP_WIFI_DEBUG_PRINT
|
2023-01-25 06:27:44 -05:00
|
|
|
#define DEBUG_PRINT
|
2022-06-09 05:56:23 -04:00
|
|
|
#if defined(CONFIG_LOG_DEFAULT_LEVEL_DEBUG) || defined(CONFIG_LOG_DEFAULT_LEVEL_VERBOSE)
|
|
|
|
#define ELOOP_DEBUG
|
|
|
|
#endif
|
2019-07-26 10:56:40 -04:00
|
|
|
#endif
|
|
|
|
|
2023-02-10 18:38:45 -05:00
|
|
|
#if CONFIG_ESP_WIFI_SCAN_CACHE
|
2020-11-12 03:18:24 -05:00
|
|
|
#define SCAN_CACHE_SUPPORTED
|
|
|
|
#endif
|
|
|
|
|
2018-08-13 04:37:56 -04:00
|
|
|
#endif /* _SUPPLICANT_OPT_H */
|