Skip to content

Commit aecd033

Browse files
authored
Merge pull request #570 from Vorrad/fix/serial_slave_link
fix(serial_slave_link): Fix the driver dependency (IEC-378)
2 parents f0f25cd + 520fc1f commit aecd033

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

esp_serial_slave_link/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.1.1
2+
3+
- Clean up the component dependency, don't depend on the `driver` component directly
4+
15
## 1.1.0
26

37
- Supported communicating with ESP32C6 SDIO Slave

esp_serial_slave_link/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
set(public_requires "sdmmc")
22

33
if("${IDF_VERSION_MAJOR}.${IDF_VERSION_MINOR}" VERSION_GREATER_EQUAL "5.3")
4-
list(APPEND public_requires "esp_driver_spi" "esp_driver_sdmmc")
4+
list(APPEND public_requires "esp_driver_sdspi" "esp_driver_sdmmc")
55
else()
66
list(APPEND public_requires "driver")
77
endif()

esp_serial_slave_link/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.1"
1+
version: "1.1.1~1"
22
description: Espressif Serial Slave Link Library
33
url: https://github.com/espressif/idf-extra-components/tree/master/esp_serial_slave_link
44
repository: https://github.com/espressif/idf-extra-components.git

0 commit comments

Comments
 (0)