mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 10:53:17 +00:00
- Added `tt::hal::Device` and functions (de)register devices and search for them. - Refactored apps: `Power` and `Display` settings apps now use the device API to find devices. - Implemented the new API for all existing drivers for all devices, including the simulator. - Updated HAL Configuration to return `std::shared_ptr` instead of raw pointers. - Added test project for headless tests and implemented tests for the new code.
30 lines
741 B
C++
30 lines
741 B
C++
#pragma once
|
|
|
|
#include "SdlTouch.h"
|
|
#include <Tactility/hal/Display.h>
|
|
#include <memory>
|
|
|
|
extern lv_disp_t* displayHandle;
|
|
|
|
class SdlDisplay final : public tt::hal::Display {
|
|
public:
|
|
|
|
std::string getName() const final { return "SDL Display"; }
|
|
std::string getDescription() const final { return ""; }
|
|
|
|
bool start() override {
|
|
return displayHandle != nullptr;
|
|
}
|
|
|
|
bool stop() override { tt_crash("Not supported"); }
|
|
|
|
std::shared_ptr<tt::hal::Touch> _Nullable createTouch() override { return std::make_shared<SdlTouch>(); }
|
|
|
|
lv_display_t* _Nullable getLvglDisplay() const override { return displayHandle; }
|
|
};
|
|
|
|
std::shared_ptr<tt::hal::Display> createDisplay() {
|
|
return std::make_shared<SdlDisplay>();
|
|
}
|
|
|