Improved audio ui, bug fixes

This commit is contained in:
Sebastien L
2023-04-07 10:53:22 -04:00
parent 1e0fce53c7
commit 7ac628a29d
34 changed files with 1176 additions and 169 deletions

View File

@@ -1,3 +1,13 @@
# Check if the required dependencies are installed
find_package(Python3 COMPONENTS Interpreter)
if(Python3_Interpreter_FOUND)
execute_process(COMMAND pip3 install protobuf grpcio-tools)
else()
message(FATAL_ERROR "Python3 interpreter not found. Please install Python3 before building the project.")
endif()
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
function(___register_flash partition_name sub_type)