mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
18 lines
356 B
C
18 lines
356 B
C
/*
|
|
* SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include "esp_wifi.h"
|
|
|
|
/**
|
|
* The following global objects are defined when WiFi is mocked.
|
|
*/
|
|
|
|
const wpa_crypto_funcs_t g_wifi_default_wpa_crypto_funcs = { };
|
|
|
|
wifi_osi_funcs_t g_wifi_osi_funcs = { };
|
|
|
|
uint64_t g_wifi_feature_caps = 0;
|