LittleVgl: Remove unused Cst816S reference

This commit is contained in:
Riku Isokoski
2023-02-23 23:33:09 +02:00
parent 05f404950a
commit 0d494136c9
4 changed files with 4 additions and 8 deletions

View File

@@ -3,7 +3,6 @@
#include <FreeRTOS.h>
#include <task.h>
#include "drivers/Cst816s.h"
#include "drivers/St7789.h"
using namespace Pinetime::Components;
@@ -35,7 +34,7 @@ bool touchpad_read(lv_indev_drv_t* indev_drv, lv_indev_data_t* data) {
return lvgl->GetTouchPadInfo(data);
}
LittleVgl::LittleVgl(Pinetime::Drivers::St7789& lcd, Pinetime::Drivers::Cst816S& touchPanel) : lcd {lcd}, touchPanel {touchPanel} {
LittleVgl::LittleVgl(Pinetime::Drivers::St7789& lcd) : lcd {lcd} {
}
void LittleVgl::Init() {