From d63773dea06203a856b617b72d5975ebe8142c28 Mon Sep 17 00:00:00 2001 From: arne Date: Sat, 4 Oct 2025 20:31:09 +0200 Subject: [PATCH] Fix application name --- CMakeLists.txt | 2 +- main/inkpot.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4bd6073..c60e911 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.16) include($ENV{IDF_PATH}/tools/cmake/project.cmake) -project(esp32-lua-example) +project(inkpot) get_filename_component(configName "${CMAKE_BINARY_DIR}" NAME) list(APPEND EXTRA_COMPONENT_DIRS "${CMAKE_SOURCE_DIR}/components/esp_littlefs") diff --git a/main/inkpot.c b/main/inkpot.c index f476218..443bd28 100644 --- a/main/inkpot.c +++ b/main/inkpot.c @@ -19,7 +19,7 @@ #define WIFI_SCAN_LIST_SIZE 10 #define LUA_FILE_PATH "/assets" -static const char *TAG = "lua_example"; +static const char *TAG = "inkpot"; // Function to log memory usage with the message at the end void log_memory_usage(const char *message) {