Skip to content

Commit 4ebde1e

Browse files
committed
feat(gmf_app_utils): Support ESP32-S3-Korvo-2L, ESP32-S3-EchoEar, ATOMS3-Echo-Base boards
1 parent 78a81e1 commit 4ebde1e

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

packages/gmf_app_utils/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.7.1
4+
5+
- Add board support for `ESP32_S3_KORVO_2L`, `ESP32_S3_EchoEar`, `ATOMS3_ECHO_BASE`
6+
37
## v0.7.0
48

59
### Features

packages/gmf_app_utils/Kconfig.projbuild

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,15 @@ config DUMMY_CODEC_BOARD
3737
config XD_AIOT_C3
3838
depends on IDF_TARGET_ESP32C3
3939
bool "XD AIOT C3"
40+
config ESP32_S3_KORVO_2L_BOARD
41+
depends on IDF_TARGET_ESP32S3
42+
bool "ESP32 S3 KORVO 2L"
43+
config ESP32_S3_ECHOEAR_BOARD
44+
depends on IDF_TARGET_ESP32S3
45+
bool "ESP32 S3 ECHOEAR"
46+
config ATOMS3_ECHO_BASE_BOARD
47+
depends on IDF_TARGET_ESP32S3
48+
bool "ATOMS3 ECHO BASE"
4049
endchoice
4150

4251
config AUDIO_BOARD
@@ -51,6 +60,9 @@ config AUDIO_BOARD
5160
default "ESP32S3_EYE" if ESP32_S3_EYE_BOARD
5261
default "DUMMY_CODEC_BOARD" if DUMMY_CODEC_BOARD
5362
default "XD_AIOT_C3" if XD_AIOT_C3
63+
default "ESP32_S3_KORVO_2L" if ESP32_S3_KORVO_2L_BOARD
64+
default "ESP32_S3_EchoEar" if ESP32_S3_ECHOEAR_BOARD
65+
default "ATOMS3_ECHO_BASE" if ATOMS3_ECHO_BASE_BOARD
5466

5567
menu "Unit Test"
5668

packages/gmf_app_utils/idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: "0.7.0"
1+
version: "0.7.1"
22
description: Espressif GMF App Utils is a module that provides utility functions for the GMF application
33
url: https://github.com/espressif/esp-gmf/tree/main/packages/gmf_app_utils
44
documentation: "https://github.com/espressif/esp-gmf/blob/main/packages/gmf_app_utils/README.md"

0 commit comments

Comments
 (0)