From 523cb61cca5189676251138c67ed1ec8c9d1c91b Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Sat, 4 Mar 2023 21:06:37 +0100 Subject: [PATCH] fix(manifest): declare supported targets in idf_component.yml Currently the component registry thinks that the component is compatible with all chip targets, while in fact CMakeLists.txt only supports ESP32, S2, S3 and C3. --- CHANGELOG.md | 2 ++ idf_component.yml | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c58415f..45bbad5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ ## Unreleased - ESP-DSP dependency is now installed from the component registry - Add some English MultiNet6 model which is trained by RNNT and CTC +- Fixed CMake errors when esp-sr was installed from component registry +- Fixed the list of supported chips displayed in the component registry ## 1.1.0 - Support esp32c3 for Chinese TTS diff --git a/idf_component.yml b/idf_component.yml index ddcda04..bf9b559 100644 --- a/idf_component.yml +++ b/idf_component.yml @@ -8,3 +8,8 @@ files: exclude: - ".github" - "docs" +targets: + - esp32 + - esp32s2 + - esp32s3 + - esp32c3