Skip to content

Commit 243097f

Browse files
authored
Merge pull request #82 from david-cermak/fix/compat_esp_interface
fix(compat): Temporarily add esp_interface.h
2 parents 7a3b61c + c530d46 commit 243097f

File tree

4 files changed

+40
-2
lines changed

4 files changed

+40
-2
lines changed

components/esp_wifi_remote/.cz.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

components/esp_wifi_remote/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
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

components/esp_wifi_remote/idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 1.1.3
1+
version: 1.1.4
22
url: https://github.com/espressif/esp-wifi-remote
33
description: Utility wrapper for esp_wifi functionality on remote targets
44
dependencies:
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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__ */

0 commit comments

Comments
 (0)