Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions firmware/main/Kconfig.projbuild
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
menu "StackChan Features"

config USE_EZDATA
bool "Enable EzData integration"
default y
help
When enabled (default, production behaviour), the firmware installs
the EzData Mooncake app and connects to M5Stack's cloud at
uiflow2.m5stack.com (MQTT) and ezdata2.m5stack.com (HTTP) for
cross-device parameter sync.

Disable when self-hosting the StackChan backend and you do not
need EzData. This avoids retry noise in the logs and prevents any
traffic from leaving for M5Stack cloud services.

endmenu

menu "Xiaozhi Assistant"

config OTA_URL
Expand Down
2 changes: 2 additions & 0 deletions firmware/main/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ extern "C" void app_main(void)
GetMooncake().installApp(std::make_unique<AppAvatar>());
GetMooncake().installApp(std::make_unique<AppEspnowControl>());
GetMooncake().installApp(std::make_unique<AppAppCenter>());
#if CONFIG_USE_EZDATA
GetMooncake().installApp(std::make_unique<AppEzdata>());
#endif
GetMooncake().installApp(std::make_unique<AppDance>());
GetMooncake().installApp(std::make_unique<AppSetup>());

Expand Down