mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
- Implement SPI devices in dts files for all devices - Removed `tt::hal::spi` HAL and its configurations - Fix for devicetree generator "boolean" support - Remove unused custom locks in all `DisplayDevice` implementations - Fixed some bugs with devices - Updated XPT2046 driver - Fix for `WifiEsp` deadlock - Export a lot of new `math.h` symbols with `tt_init.cpp` - Created `SpiDeviceLock` in `TactilityCore` as a wrapper for kernel SPI locking - Improved `TactilityKernel` SPI driver.
88 lines
3.0 KiB
C++
88 lines
3.0 KiB
C++
#include "tt_hal_display.h"
|
|
|
|
#include <tactility/check.h>
|
|
|
|
#include <tactility/hal/Device.h>
|
|
#include <Tactility/hal/display/DisplayDevice.h>
|
|
#include <Tactility/hal/display/DisplayDriver.h>
|
|
|
|
static ColorFormat toColorFormat(tt::hal::display::ColorFormat format) {
|
|
switch (format) {
|
|
case tt::hal::display::ColorFormat::Monochrome:
|
|
return COLOR_FORMAT_MONOCHROME;
|
|
case tt::hal::display::ColorFormat::BGR565:
|
|
return COLOR_FORMAT_BGR565;
|
|
case tt::hal::display::ColorFormat::BGR565Swapped:
|
|
return COLOR_FORMAT_BGR565_SWAPPED;
|
|
case tt::hal::display::ColorFormat::RGB565:
|
|
return COLOR_FORMAT_RGB565;
|
|
case tt::hal::display::ColorFormat::RGB565Swapped:
|
|
return COLOR_FORMAT_RGB565_SWAPPED;
|
|
case tt::hal::display::ColorFormat::RGB888:
|
|
return COLOR_FORMAT_RGB888;
|
|
default:
|
|
check(false, "ColorFormat not supported");
|
|
}
|
|
}
|
|
|
|
struct DriverWrapper {
|
|
std::shared_ptr<tt::hal::display::DisplayDriver> driver;
|
|
DriverWrapper(std::shared_ptr<tt::hal::display::DisplayDriver> driver) : driver(driver) {}
|
|
};
|
|
|
|
static std::shared_ptr<tt::hal::display::DisplayDevice> findValidDisplayDevice(tt::hal::Device::Id id) {
|
|
auto device = tt::hal::findDevice(id);
|
|
if (device == nullptr || device->getType() != tt::hal::Device::Type::Display) {
|
|
return nullptr;
|
|
}
|
|
return std::reinterpret_pointer_cast<tt::hal::display::DisplayDevice>(device);
|
|
}
|
|
|
|
extern "C" {
|
|
|
|
bool tt_hal_display_driver_supported(DeviceId id) {
|
|
auto display = findValidDisplayDevice(id);
|
|
return display != nullptr && display->supportsDisplayDriver();
|
|
}
|
|
|
|
DisplayDriverHandle tt_hal_display_driver_alloc(DeviceId id) {
|
|
auto display = findValidDisplayDevice(id);
|
|
assert(display->supportsDisplayDriver());
|
|
return new DriverWrapper(display->getDisplayDriver());
|
|
}
|
|
|
|
void tt_hal_display_driver_free(DisplayDriverHandle handle) {
|
|
auto wrapper = static_cast<DriverWrapper*>(handle);
|
|
delete wrapper;
|
|
}
|
|
|
|
bool tt_hal_display_driver_lock(DisplayDriverHandle handle, TickType_t timeout) {
|
|
// TODO: re-implement with SPI lock
|
|
return true;
|
|
}
|
|
|
|
void tt_hal_display_driver_unlock(DisplayDriverHandle handle) {
|
|
// TODO: re-implement with SPI lock
|
|
}
|
|
|
|
ColorFormat tt_hal_display_driver_get_colorformat(DisplayDriverHandle handle) {
|
|
auto wrapper = static_cast<DriverWrapper*>(handle);
|
|
return toColorFormat(wrapper->driver->getColorFormat());
|
|
}
|
|
|
|
uint16_t tt_hal_display_driver_get_pixel_width(DisplayDriverHandle handle) {
|
|
auto wrapper = static_cast<DriverWrapper*>(handle);
|
|
return wrapper->driver->getPixelWidth();
|
|
}
|
|
|
|
uint16_t tt_hal_display_driver_get_pixel_height(DisplayDriverHandle handle) {
|
|
auto wrapper = static_cast<DriverWrapper*>(handle);
|
|
return wrapper->driver->getPixelHeight();
|
|
}
|
|
|
|
void tt_hal_display_driver_draw_bitmap(DisplayDriverHandle handle, int xStart, int yStart, int xEnd, int yEnd, const void* pixelData) {
|
|
auto wrapper = static_cast<DriverWrapper*>(handle);
|
|
wrapper->driver->drawBitmap(xStart, yStart, xEnd, yEnd, pixelData);
|
|
}
|
|
|
|
} |