From f4f8466e4c0ac5d93ee8baa857a321d2a9565c4e Mon Sep 17 00:00:00 2001 From: mverch67 Date: Sun, 12 Jan 2025 18:11:48 +0100 Subject: [PATCH] restructure device-ui library into sub-directories --- src/main.cpp | 8 ++++---- src/mesh/api/PacketAPI.h | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index fd8518913..aca011932 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -116,11 +116,11 @@ AudioThread *audioThread = nullptr; #endif #if HAS_TFT -#include "DeviceScreen.h" -#include "DisplayDriverConfig.h" -#include "PacketClient.h" -#include "PacketServer.h" #include "api/PacketAPI.h" +#include "comms/PacketClient.h" +#include "comms/PacketServer.h" +#include "graphics/DeviceScreen.h" +#include "graphics/driver/DisplayDriverConfig.h" void tft_task_handler(void *); diff --git a/src/mesh/api/PacketAPI.h b/src/mesh/api/PacketAPI.h index f9ae0812a..53c0667f5 100644 --- a/src/mesh/api/PacketAPI.h +++ b/src/mesh/api/PacketAPI.h @@ -1,7 +1,7 @@ #pragma once -#include "PacketServer.h" #include "PhoneAPI.h" +#include "comms/PacketServer.h" #include "concurrency/OSThread.h" /**