rename interface folder to HardwareInterfaces
rename HardwareInterface file to hardware abstract. update ini to reflect new file structure
This commit is contained in:
parent
44b5d8cf14
commit
a771c64c71
9 changed files with 6 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
||||||
#include "HardwareInterface.h"
|
#include "HardwareAbstract.hpp"
|
||||||
|
|
||||||
HardwareAbstract::HardwareAbstract(std::shared_ptr<BatteryInterface> aBattery)
|
HardwareAbstract::HardwareAbstract(std::shared_ptr<BatteryInterface> aBattery)
|
||||||
: mBattery(std::move(aBattery)){
|
: mBattery(std::move(aBattery)){
|
|
@ -1,7 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
#include "SparkFunLIS3DH.h"
|
#include "SparkFunLIS3DH.h"
|
||||||
|
|
||||||
#include "HardwareInterface.h"
|
#include "HardwareAbstract.hpp"
|
||||||
#include <WiFi.h>
|
#include <WiFi.h>
|
||||||
#include "Wire.h"
|
#include "Wire.h"
|
||||||
#include "lvgl.h"
|
#include "lvgl.h"
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
#include "HardwareInterface.h"
|
#include "HardwareAbstract.hpp"
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
// 2023 Matthew Colvin
|
// 2023 Matthew Colvin
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "HardwareInterface.h"
|
#include "HardwareAbstract.hpp"
|
||||||
#include "Images.hpp"
|
#include "Images.hpp"
|
||||||
#include "lvgl.h"
|
#include "lvgl.h"
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
|
|
@ -40,14 +40,14 @@ build_flags =
|
||||||
; ------------- Includes ------------------------------------
|
; ------------- Includes ------------------------------------
|
||||||
-I OmoteUI
|
-I OmoteUI
|
||||||
-I HAL
|
-I HAL
|
||||||
-I HAL/Interface
|
-I HAL/HardwareInterfaces
|
||||||
|
|
||||||
lib_deps =
|
lib_deps =
|
||||||
lvgl/lvgl@^8.3.9
|
lvgl/lvgl@^8.3.9
|
||||||
lib_archive = false
|
lib_archive = false
|
||||||
build_src_filter =
|
build_src_filter =
|
||||||
+<../OmoteUI/*>
|
+<../OmoteUI/*>
|
||||||
+<../HAL/Interface/*>
|
+<../HAL/HardwareAbstract.cpp>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue