File tree Expand file tree Collapse file tree 4 files changed +40
-2
lines changed
components/esp_wifi_remote Expand file tree Collapse file tree 4 files changed +40
-2
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,6 @@ commitizen:
33 bump_message : ' bump(wifi_remote): $current_version -> $new_version'
44 pre_bump_hooks : python ../../ci/changelog.py esp_wifi_remote
55 tag_format : wifi_remote-v$version
6- version : 1.1.3
6+ version : 1.1.4
77 version_files :
88 - idf_component.yml
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ 1.1.4] ( https://github.com/espressif/esp-wifi-remote/commits/wifi_remote-v1.1.4 )
4+
5+ ### Bug Fixes
6+
7+ - Temporarily add esp_interface.h ([ c02879b] ( https://github.com/espressif/esp-wifi-remote/commit/c02879b ) )
8+
39## [ 1.1.3] ( https://github.com/espressif/esp-wifi-remote/commits/wifi_remote-v1.1.3 )
410
511### Bug Fixes
Original file line number Diff line number Diff line change 1- version : 1.1.3
1+ version : 1.1.4
22url : https://github.com/espressif/esp-wifi-remote
33description : Utility wrapper for esp_wifi functionality on remote targets
44dependencies :
Original file line number Diff line number Diff line change 1+ /*
2+ * SPDX-FileCopyrightText: 2015-2025 Espressif Systems (Shanghai) CO LTD
3+ *
4+ * SPDX-License-Identifier: Apache-2.0
5+ */
6+
7+ // This has been added for backward compat to support builds if IDF-v6.0
8+ // on both GitHub and GitLab master. It will be removed after esp_wifi API
9+ // stabilizes on the master branch
10+ #ifndef __ESP_INTERFACE_H__
11+ #define __ESP_INTERFACE_H__
12+
13+ #include <stdint.h>
14+
15+ #ifdef __cplusplus
16+ extern "C" {
17+ #endif
18+
19+ typedef enum {
20+ ESP_IF_WIFI_STA = 0 , /**< Station interface */
21+ ESP_IF_WIFI_AP , /**< Soft-AP interface */
22+ ESP_IF_WIFI_NAN , /**< NAN interface */
23+ ESP_IF_ETH , /**< Ethernet interface */
24+ ESP_IF_MAX
25+ } esp_interface_t ;
26+
27+ #ifdef __cplusplus
28+ }
29+ #endif
30+
31+
32+ #endif /* __ESP_INTERFACE_TYPES_H__ */
You can’t perform that action at this time.
0 commit comments