rename interface folder to HardwareInterfaces

rename HardwareInterface file to hardware
abstract.

update ini to reflect new file structure
This commit is contained in:
Matthew Colvin 2023-08-11 12:26:01 -05:00 committed by MatthewColvin
parent 44b5d8cf14
commit a771c64c71
9 changed files with 6 additions and 6 deletions

View file

@ -1,4 +1,4 @@
#include "HardwareInterface.h"
#include "HardwareAbstract.hpp"
HardwareAbstract::HardwareAbstract(std::shared_ptr<BatteryInterface> aBattery)
: mBattery(std::move(aBattery)){

View file

@ -1,7 +1,7 @@
#pragma once
#include "SparkFunLIS3DH.h"
#include "HardwareInterface.h"
#include "HardwareAbstract.hpp"
#include <WiFi.h>
#include "Wire.h"
#include "lvgl.h"

View file

@ -1,5 +1,5 @@
#pragma once
#include "HardwareInterface.h"
#include "HardwareAbstract.hpp"
#include <iostream>
#include <string>

View file

@ -2,7 +2,7 @@
// 2023 Matthew Colvin
#pragma once
#include "HardwareInterface.h"
#include "HardwareAbstract.hpp"
#include "Images.hpp"
#include "lvgl.h"
#include <algorithm>

View file

@ -40,14 +40,14 @@ build_flags =
; ------------- Includes ------------------------------------
-I OmoteUI
-I HAL
-I HAL/Interface
-I HAL/HardwareInterfaces
lib_deps =
lvgl/lvgl@^8.3.9
lib_archive = false
build_src_filter =
+<../OmoteUI/*>
+<../HAL/Interface/*>
+<../HAL/HardwareAbstract.cpp>