summaryrefslogtreecommitdiff
path: root/src/app_console
diff options
context:
space:
mode:
authorjacqueline <me@jacqueline.id.au>2023-09-28 10:43:48 +1000
committerjacqueline <me@jacqueline.id.au>2023-09-28 10:43:48 +1000
commit6a47edcd35884095946f761fa3aa2367c7c26442 (patch)
tree5b34e1bf14759dcc78b6611b1b6538dc03119860 /src/app_console
parentf09ba5ffd53bf7d28e0dc516c00a8f69ca7efae9 (diff)
downloadtangara-fw-6a47edcd35884095946f761fa3aa2367c7c26442.tar.gz
Use databinding for the top bar. It's so nice now!
Diffstat (limited to 'src/app_console')
-rw-r--r--src/app_console/app_console.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/app_console/app_console.cpp b/src/app_console/app_console.cpp
index 83406650..04f1866d 100644
--- a/src/app_console/app_console.cpp
+++ b/src/app_console/app_console.cpp
@@ -336,7 +336,6 @@ void RegisterDbDump() {
esp_console_cmd_register(&cmd);
}
-#if CONFIG_APPTRACE_ENABLE
int CmdTasks(int argc, char** argv) {
if (!configUSE_TRACE_FACILITY) {
std::cout << "configUSE_TRACE_FACILITY must be enabled" << std::endl;
@@ -446,7 +445,6 @@ void RegisterTasks() {
.argtable = NULL};
esp_console_cmd_register(&cmd);
}
-#endif
int CmdHeaps(int argc, char** argv) {
static const std::pmr::string usage = "usage: heaps";
@@ -638,9 +636,7 @@ auto AppConsole::RegisterExtraComponents() -> void {
RegisterDbTracks();
RegisterDbIndex();
RegisterDbDump();
-#if CONFIG_APPTRACE_ENABLE
RegisterTasks();
-#endif
RegisterHeaps();