From 509d71cdaa6c0b4fda181992fd508ce12349e9c6 Mon Sep 17 00:00:00 2001 From: Matthew Colvin <35540398+Mc067415@users.noreply.github.com> Date: Sun, 13 Aug 2023 22:27:05 -0500 Subject: [PATCH] rename HardwareInterfaces folder to hardwaremodules since it now contains an abstract --- .../BatteryInterface.h | 0 .../DisplayAbstract.cpp | 0 .../{HardwareInterfaces => HardwareModules}/DisplayAbstract.h | 0 .../HAL/{HardwareInterfaces => HardwareModules}/UIInterface.h | 0 .../wifiHandlerInterface.h | 0 Platformio/platformio.ini | 4 ++-- 6 files changed, 2 insertions(+), 2 deletions(-) rename Platformio/HAL/{HardwareInterfaces => HardwareModules}/BatteryInterface.h (100%) rename Platformio/HAL/{HardwareInterfaces => HardwareModules}/DisplayAbstract.cpp (100%) rename Platformio/HAL/{HardwareInterfaces => HardwareModules}/DisplayAbstract.h (100%) rename Platformio/HAL/{HardwareInterfaces => HardwareModules}/UIInterface.h (100%) rename Platformio/HAL/{HardwareInterfaces => HardwareModules}/wifiHandlerInterface.h (100%) diff --git a/Platformio/HAL/HardwareInterfaces/BatteryInterface.h b/Platformio/HAL/HardwareModules/BatteryInterface.h similarity index 100% rename from Platformio/HAL/HardwareInterfaces/BatteryInterface.h rename to Platformio/HAL/HardwareModules/BatteryInterface.h diff --git a/Platformio/HAL/HardwareInterfaces/DisplayAbstract.cpp b/Platformio/HAL/HardwareModules/DisplayAbstract.cpp similarity index 100% rename from Platformio/HAL/HardwareInterfaces/DisplayAbstract.cpp rename to Platformio/HAL/HardwareModules/DisplayAbstract.cpp diff --git a/Platformio/HAL/HardwareInterfaces/DisplayAbstract.h b/Platformio/HAL/HardwareModules/DisplayAbstract.h similarity index 100% rename from Platformio/HAL/HardwareInterfaces/DisplayAbstract.h rename to Platformio/HAL/HardwareModules/DisplayAbstract.h diff --git a/Platformio/HAL/HardwareInterfaces/UIInterface.h b/Platformio/HAL/HardwareModules/UIInterface.h similarity index 100% rename from Platformio/HAL/HardwareInterfaces/UIInterface.h rename to Platformio/HAL/HardwareModules/UIInterface.h diff --git a/Platformio/HAL/HardwareInterfaces/wifiHandlerInterface.h b/Platformio/HAL/HardwareModules/wifiHandlerInterface.h similarity index 100% rename from Platformio/HAL/HardwareInterfaces/wifiHandlerInterface.h rename to Platformio/HAL/HardwareModules/wifiHandlerInterface.h diff --git a/Platformio/platformio.ini b/Platformio/platformio.ini index bab66f5..841d482 100644 --- a/Platformio/platformio.ini +++ b/Platformio/platformio.ini @@ -40,7 +40,7 @@ build_flags = ; ------------- Includes ------------------------------------ -I OmoteUI -I HAL - -I HAL/HardwareInterfaces + -I HAL/HardwareModules lib_deps = lvgl/lvgl@^8.3.9 @@ -48,7 +48,7 @@ lib_archive = false build_src_filter = +<../OmoteUI/*> +<../HAL/HardwareAbstract.cpp> - +<../HAL/HardwareInterfaces/DisplayAbstract.cpp> + +<../HAL/HardwareModules/DisplayAbstract.cpp>