HAL renaming & relocation (#215)

Implemented more consistent naming:
- Moved all HAL devices into their own namespace (and related folder)
- Post-fixed all HAL device names with "Device"
This commit is contained in:
Ken Van Hoeylandt
2025-02-09 16:48:23 +01:00
committed by GitHub
parent a7a3b17ff6
commit 2345ba6d13
62 changed files with 263 additions and 250 deletions
+6 -6
View File
@@ -1,6 +1,6 @@
#pragma once
#include <Tactility/hal/Display.h>
#include "Tactility/hal/display/DisplayDevice.h"
#include <driver/spi_common.h>
#include <driver/gpio.h>
@@ -9,7 +9,7 @@
#include <functional>
#include <lvgl.h>
class Ili934xDisplay final : public tt::hal::Display {
class Ili934xDisplay final : public tt::hal::display::DisplayDevice {
public:
@@ -23,7 +23,7 @@ public:
gpio_num_t dcPin,
unsigned int horizontalResolution,
unsigned int verticalResolution,
std::shared_ptr<tt::hal::Touch> touch
std::shared_ptr<tt::hal::touch::TouchDevice> touch
) : spiBusHandle(spi_bus_handle),
csPin(csPin),
dcPin(dcPin),
@@ -44,7 +44,7 @@ public:
bool mirrorY = false;
bool invertColor = true;
uint32_t bufferSize = 0; // Size in pixel count. 0 means default, which is 1/10 of the screen size
std::shared_ptr<tt::hal::Touch> touch;
std::shared_ptr<tt::hal::touch::TouchDevice> touch;
std::function<void(uint8_t)> _Nullable backlightDutyFunction = nullptr;
};
@@ -68,7 +68,7 @@ public:
bool stop() final;
std::shared_ptr<tt::hal::Touch> _Nullable createTouch() final { return configuration->touch; }
std::shared_ptr<tt::hal::touch::TouchDevice> _Nullable createTouch() final { return configuration->touch; }
void setBacklightDuty(uint8_t backlightDuty) final {
if (configuration->backlightDutyFunction != nullptr) {
@@ -84,4 +84,4 @@ public:
lv_display_t* _Nullable getLvglDisplay() const final { return displayHandle; }
};
std::shared_ptr<tt::hal::Display> createDisplay();
std::shared_ptr<tt::hal::display::DisplayDevice> createDisplay();