feat: add DiscordApp for voice control integration with UDP communication

This commit is contained in:
GW_MC
2026-01-24 13:22:17 +08:00
parent dd1702e3e9
commit 89cc04951f
4 changed files with 772 additions and 1 deletions

View File

@@ -1,5 +1,23 @@
set(requires esp-tls spi_flash nvs_flash esp_event esp_netif esp_http_client esp_wifi esp_psram esp_lvgl_port)
file(GLOB SRCS "main.cpp" "*.cpp" "*.c" "**/*.cpp" "**/*.c")
file(GLOB SRCS "main.cpp" "*.cpp" "*.c" "**/*.cpp" "**/*.cpp" "ui/**/*.cpp" "ui/**/*.c")
# Explicitly list all source files to ensure build system picks them up
# set(SRCS
# "main.cpp"
# "display/display.cpp"
# "display/eink_display_handler.cpp"
# "info/info.cpp"
# "io/nvs_handler.cpp"
# "network/http_handler.cpp"
# "network/network.cpp"
# "network/udp_client.cpp"
# "network/wifi_handler.cpp"
# "ui/page_stack.cpp"
# "ui/root_layout.cpp"
# "ui/ui_handler.cpp"
# "ui/apps/demo_app.cpp"
# "ui/apps/discord_app.cpp"
# "ui/apps/shutdown_app.cpp"
# )
idf_component_register(SRCS ${SRCS}
PRIV_REQUIRES ${requires}