Skip to content

Commit 72e9f7f

Browse files
committed
bump to esp-idf version 5.4
1 parent 3423a89 commit 72e9f7f

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

.vscode/settings.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
"compare": "c"
44
},
55
"idf.adapterTargetName": "esp32s3",
6-
"idf.flashType": "UART"
6+
"idf.flashType": "UART",
7+
"idf.pythonInstallPath": "/home/wkl/.espressif/python_env/idf5.4_py3.12_env/bin/python"
78
}

CMakeLists.txt

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
cmake_minimum_required(VERSION 3.16)
66

77
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
8-
project(wakeword)
8+
project(keyword)
99

1010
idf_build_set_property(COMPILE_OPTIONS "-fdiagnostics-color=always" APPEND)
1111
idf_build_set_property(COMPILE_OPTIONS "-Wno-unused-variable" APPEND)
@@ -14,4 +14,5 @@ idf_build_set_property(COMPILE_OPTIONS "-Wno-error=format=" APPEND)
1414
idf_build_set_property(COMPILE_OPTIONS "-Wno-unused-but-set-parameter" APPEND)
1515
idf_build_set_property(COMPILE_OPTIONS "-Wno-error=nonnull-compare" APPEND)
1616
idf_build_set_property(COMPILE_OPTIONS "-Wno-error=stringop-truncation" APPEND)
17-
idf_build_set_property(COMPILE_OPTIONS "-Wno-missing-field-initializers" APPEND)
17+
idf_build_set_property(COMPILE_OPTIONS "-Wno-missing-field-initializers" APPEND)
18+
idf_build_set_property(COMPILE_OPTIONS "-Wno-deprecated-declarations" APPEND)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ requiring deep knowledge of machine learning or embedded systems.
2222

2323
## Prerequisites
2424

25-
* ESP-IDF >= v5.3.2
25+
* ESP-IDF >= v5.4
2626
* [ESP-32-S3-DevKitC-1](https://docs.espressif.com/projects/esp-idf/en/latest/esp32s3/hw-reference/esp32s3/user-guide-devkitc-1.html) or similar board
2727
* I2S microphone, e.g. [SKU 107990153](https://www.seeedstudio.com/Sipeed-I2S-Mic-for-MAIX-Dev-Boards-p-2887.html)
2828

dependencies.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies:
1212
idf:
1313
source:
1414
type: idf
15-
version: 5.3.2
15+
version: 5.4.0
1616
direct_dependencies:
1717
- espressif/led_strip
1818
- idf

main/CMakeLists.txt

-1
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,3 @@ RECURSIVE_FIND_FILE_APPEND(EI_SOURCE_FILES "${EI_SDK_FOLDER}/CMSIS/NN/Source" "*
2727
list(APPEND EI_SOURCE_FILES "${EI_SDK_FOLDER}/tensorflow/lite/c/common.c")
2828

2929
idf_component_register(SRCS "keyword.cpp" ${MODEL_SOURCE} ${EI_SOURCE_FILES} INCLUDE_DIRS ".")
30-
target_compile_options(${COMPONENT_LIB} PRIVATE -std=gnu++17)

0 commit comments

Comments
 (0)