From 12cc17544b9c62d8863a441cd5068e85d14388f8 Mon Sep 17 00:00:00 2001 From: sam rolfe Date: Mon, 8 Sep 2025 11:38:08 +1000 Subject: [PATCH] Fix include path: CommandMgr includes ../app/AppConfig.hpp --- .vscode/c_cpp_properties.json | 3 ++- src/core/CommandMgr.cpp | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index 64516c0..3616b40 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -21,7 +21,8 @@ "/home/sam/.arduino15/packages/esp32/tools/esp-x32/2411/xtensa-esp-elf/include/c++/14.2.0/backward", "/home/sam/.arduino15/packages/esp32/tools/esp-x32/2411/lib/gcc/xtensa-esp-elf/14.2.0/include", "/home/sam/.arduino15/packages/esp32/tools/esp-x32/2411/lib/gcc/xtensa-esp-elf/14.2.0/include-fixed", - "/home/sam/.arduino15/packages/esp32/tools/esp-x32/2411/xtensa-esp-elf/include" + "/home/sam/.arduino15/packages/esp32/tools/esp-x32/2411/xtensa-esp-elf/include", + "/media/sam/8294CD2994CD2111/Users/Dell/Documents/Arduino/CAR_GPS_TRACKER/src/app" ], "forcedInclude": [ "/home/sam/.arduino15/packages/esp32/hardware/esp32/3.2.0/cores/esp32/Arduino.h" diff --git a/src/core/CommandMgr.cpp b/src/core/CommandMgr.cpp index b9e9d45..63d90aa 100644 --- a/src/core/CommandMgr.cpp +++ b/src/core/CommandMgr.cpp @@ -1,6 +1,6 @@ #include "CommandMgr.hpp" #include "HttpClient.hpp" -#include "AppConfig.hpp" +#include "../app/AppConfig.hpp" #include "OTAMgr.hpp" extern AppConfig CFG;