summaryrefslogtreecommitdiff
path: root/src/tangara
diff options
context:
space:
mode:
authorTursiae <git@tursiae.org>2025-02-10 16:58:20 +1100
committerTursiae <git@tursiae.org>2025-02-10 16:58:20 +1100
commit187cd772ee4027f252b03788cb1c0774d62ef207 (patch)
tree1e65a3fa6fa92620dc4d6bd1761f5ab0bfef9e9f /src/tangara
parentdcd39a75e8b4be170e27eb2e7eb1b4f755ba32f2 (diff)
downloadtangara-fw-187cd772ee4027f252b03788cb1c0774d62ef207.tar.gz
s/sdkconfig.local/sdkconfig/g
Diffstat (limited to 'src/tangara')
-rw-r--r--src/tangara/app_console/app_console.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/tangara/app_console/app_console.cpp b/src/tangara/app_console/app_console.cpp
index e4e42786..ce6c75d9 100644
--- a/src/tangara/app_console/app_console.cpp
+++ b/src/tangara/app_console/app_console.cpp
@@ -209,10 +209,10 @@ int CmdTasks(int argc, char** argv) {
#if (configUSE_TRACE_FACILITY == 0)
std::cout
<< "FreeRTOS is not configured to track task info." << std::endl
- << "You can enable task tracing via sdkconfig.local, by" << std::endl
- << "setting CONFIG_FREERTOS_USE_TRACE_FACILITY=y. Alternately," << std::endl
- << "use idf.py menuconfig to enable Components / FreeRTOS /" << std::endl
- << "Kernel / configUSE_TRACE_FACILITY to do the same." << std::endl
+ << "You can enable task tracing via sdkconfig, by setting" << std::endl
+ << "CONFIG_FREERTOS_USE_TRACE_FACILITY=y. Alternately, use" << std::endl
+ << "idf.py menuconfig to enable Components/FreeRTOS/Kernel" << std::endl
+ << "configUSE_TRACE_FACILITY to do the same." << std::endl << std::endl
<< "Also consider 'Enable display of xCoreID in vTaskList'," << std::endl
<< "or CONFIG_FREERTOS_VTASKLIST_INCLUDE_COREID=y" << std::endl;
return 1;
@@ -255,9 +255,9 @@ int CmdTasks(int argc, char** argv) {
<< "statistics, and this means that detailed task" << std::endl
<< "information is not available." << std::endl
<< "Enable CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS" << std::endl
- << "in sdkconfig.local to capture these stats, or" << std::endl
- << "via idf.py menuconfig, in Components/FreeRTOS/" << std::endl
- << "Kernel/configGENERATE_RUN_TIME_STATS." << std::endl;
+ << "in sdkconfig to capture these stats, or via" << std::endl
+ << "idf.py menuconfig, in Components/FreeRTOS/Kernel" << std::endl
+ << "configGENERATE_RUN_TIME_STATS." << std::endl;
}
std::vector<std::pair<uint32_t, std::pmr::string>> info_strings;