From 91d8a93af872636a3c6279f8b9d10a598091b819 Mon Sep 17 00:00:00 2001 From: Li Junru Date: Wed, 27 Nov 2024 18:54:15 +0800 Subject: [PATCH] feat(uac_device): release the official version --- components/usb/usb_device_uac/CHANGELOG.md | 4 ++++ components/usb/usb_device_uac/README.md | 2 +- components/usb/usb_device_uac/idf_component.yml | 2 +- examples/usb/device/usb_uac/README.md | 2 +- examples/usb/device/usb_uac/main/idf_component.yml | 2 +- 5 files changed, 8 insertions(+), 4 deletions(-) diff --git a/components/usb/usb_device_uac/CHANGELOG.md b/components/usb/usb_device_uac/CHANGELOG.md index bf601e0dd..74474f85e 100644 --- a/components/usb/usb_device_uac/CHANGELOG.md +++ b/components/usb/usb_device_uac/CHANGELOG.md @@ -1,5 +1,9 @@ # ChangeLog +## v1.0.0 (2024-11-27) + +* Release the official version. + ## v0.2.0 (2024-07-31) * Support USB High speed diff --git a/components/usb/usb_device_uac/README.md b/components/usb/usb_device_uac/README.md index 9435ceeb4..841bb9b24 100644 --- a/components/usb/usb_device_uac/README.md +++ b/components/usb/usb_device_uac/README.md @@ -2,7 +2,7 @@ ## USB Device UAC Component -`usb_device_uac` is a USB `UAC` device driver for ESP32-S2/ESP32-S3. Support for transmitting/receiving audio from the host side, with a maximum of 8 speaker channels, 4 microphone channels, and configurable sampling rates. +`usb_device_uac` is a USB `UAC` device driver for ESP32-S2/ESP32-S3/ESP32-P4. Support for transmitting/receiving audio from the host side, with a maximum of 8 speaker channels, 4 microphone channels, and configurable sampling rates. Features: diff --git a/components/usb/usb_device_uac/idf_component.yml b/components/usb/usb_device_uac/idf_component.yml index e87240a1a..036d9fc5b 100644 --- a/components/usb/usb_device_uac/idf_component.yml +++ b/components/usb/usb_device_uac/idf_component.yml @@ -1,4 +1,4 @@ -version: "0.2.0" +version: "1.0.0" targets: - esp32s2 - esp32s3 diff --git a/examples/usb/device/usb_uac/README.md b/examples/usb/device/usb_uac/README.md index 5cf267e80..1e2931222 100644 --- a/examples/usb/device/usb_uac/README.md +++ b/examples/usb/device/usb_uac/README.md @@ -46,7 +46,7 @@ After the programming is completed, insert the USB interface on the development . $HOME/esp/esp-idf/export.sh ``` -3. Set ESP-IDF build target to `esp32s2` or `esp32s3` +3. Set ESP-IDF build target to `esp32s3` or `esp32-p4` ```bash idf.py set-target esp32s3 diff --git a/examples/usb/device/usb_uac/main/idf_component.yml b/examples/usb/device/usb_uac/main/idf_component.yml index f1d5f0847..7f588eef5 100644 --- a/examples/usb/device/usb_uac/main/idf_component.yml +++ b/examples/usb/device/usb_uac/main/idf_component.yml @@ -18,5 +18,5 @@ dependencies: override_path: "../common_components/esp32_p4_function_ev_board" idf: ">=5.1" usb_device_uac: - version: "0.*" + version: "1.*" override_path: "../../../../../components/usb/usb_device_uac"