Ken Van Hoeylandt c74006f8b6
Created Drivers folder with ILI934x subproject (#209)
Refactored all existing boards to re-use the ILI934x driver code.
2025-02-08 18:54:09 +01:00

32 lines
788 B
C++

#pragma once
#include "SdlTouch.h"
#include <Tactility/hal/Display.h>
#include <memory>
/** Hack: variable comes from LvglTask.cpp */
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>();
}