Merge pull request #887 from david-cermak/fix/eppp_uart_deps

[eppp]: Fix uart driver deps with new IDF
This commit is contained in:
david-cermak
2025-09-15 13:41:53 +02:00
committed by GitHub
4 changed files with 9 additions and 3 deletions

View File

@@ -3,6 +3,6 @@ commitizen:
bump_message: 'bump(eppp): $current_version -> $new_version' bump_message: 'bump(eppp): $current_version -> $new_version'
pre_bump_hooks: python ../../ci/changelog.py eppp_link pre_bump_hooks: python ../../ci/changelog.py eppp_link
tag_format: eppp-v$version tag_format: eppp-v$version
version: 1.1.1 version: 1.1.2
version_files: version_files:
- idf_component.yml - idf_component.yml

View File

@@ -1,5 +1,11 @@
# Changelog # Changelog
## [1.1.2](https://github.com/espressif/esp-protocols/commits/eppp-v1.1.2)
### Bug Fixes
- Update uart driver deps per IDF > v5.3 ([92e14607](https://github.com/espressif/esp-protocols/commit/92e14607))
## [1.1.1](https://github.com/espressif/esp-protocols/commits/eppp-v1.1.1) ## [1.1.1](https://github.com/espressif/esp-protocols/commits/eppp-v1.1.1)
### Bug Fixes ### Bug Fixes

View File

@@ -1,5 +1,5 @@
if("${IDF_VERSION_MAJOR}.${IDF_VERSION_MINOR}" VERSION_GREATER "5.3") if("${IDF_VERSION_MAJOR}.${IDF_VERSION_MINOR}" VERSION_GREATER "5.3")
set(driver_deps esp_driver_gpio esp_driver_spi) set(driver_deps esp_driver_gpio esp_driver_spi esp_driver_uart esp_driver_sdio)
else() else()
set(driver_deps driver) set(driver_deps driver)
endif() endif()

View File

@@ -1,4 +1,4 @@
version: 1.1.1 version: 1.1.2
url: https://github.com/espressif/esp-protocols/tree/master/components/eppp_link url: https://github.com/espressif/esp-protocols/tree/master/components/eppp_link
description: The component provides a general purpose PPP connectivity, typically used as WiFi-PPP router description: The component provides a general purpose PPP connectivity, typically used as WiFi-PPP router
dependencies: dependencies: