mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
24 lines
475 B
C
24 lines
475 B
C
/*
|
|
* SPDX-FileCopyrightText: 2019-2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef _SUPPLICANT_OPT_H
|
|
#define _SUPPLICANT_OPT_H
|
|
|
|
#include "sdkconfig.h"
|
|
|
|
#if CONFIG_ESP_WIFI_DEBUG_PRINT
|
|
#define DEBUG_PRINT
|
|
#if defined(CONFIG_LOG_DEFAULT_LEVEL_DEBUG) || defined(CONFIG_LOG_DEFAULT_LEVEL_VERBOSE)
|
|
#define ELOOP_DEBUG
|
|
#endif
|
|
#endif
|
|
|
|
#if CONFIG_ESP_WIFI_SCAN_CACHE
|
|
#define SCAN_CACHE_SUPPORTED
|
|
#endif
|
|
|
|
#endif /* _SUPPLICANT_OPT_H */
|