restructure device-ui library into sub-directories

This commit is contained in:
mverch67 2025-01-12 18:11:48 +01:00
parent 36f22b7676
commit f4f8466e4c
2 changed files with 5 additions and 5 deletions

View File

@ -116,11 +116,11 @@ AudioThread *audioThread = nullptr;
#endif #endif
#if HAS_TFT #if HAS_TFT
#include "DeviceScreen.h"
#include "DisplayDriverConfig.h"
#include "PacketClient.h"
#include "PacketServer.h"
#include "api/PacketAPI.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 *); void tft_task_handler(void *);

View File

@ -1,7 +1,7 @@
#pragma once #pragma once
#include "PacketServer.h"
#include "PhoneAPI.h" #include "PhoneAPI.h"
#include "comms/PacketServer.h"
#include "concurrency/OSThread.h" #include "concurrency/OSThread.h"
/** /**