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