2021-07-15 07:11:27 -04:00
|
|
|
#include "TouchHandler.h"
|
|
|
|
|
|
|
|
using namespace Pinetime::Controllers;
|
|
|
|
|
|
|
|
TouchHandler::TouchHandler(Drivers::Cst816S& touchPanel, Components::LittleVgl& lvgl)
|
|
|
|
: touchPanel {touchPanel},
|
|
|
|
lvgl {lvgl} {
|
|
|
|
}
|
|
|
|
|
|
|
|
void TouchHandler::CancelTap() {
|
|
|
|
isCancelled = true;
|
2021-07-15 17:07:55 -04:00
|
|
|
lvgl.SetNewTouchPoint(-1, -1, true);
|
2021-07-15 07:11:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
Pinetime::Drivers::Cst816S::Gestures TouchHandler::GestureGet() {
|
|
|
|
auto returnGesture = gesture;
|
|
|
|
gesture = Drivers::Cst816S::Gestures::None;
|
|
|
|
return returnGesture;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TouchHandler::Start() {
|
2021-07-15 17:07:55 -04:00
|
|
|
if (pdPASS != xTaskCreate(TouchHandler::Process, "Touch", 100, this, 0, &taskHandle)) {
|
2021-07-15 07:11:27 -04:00
|
|
|
APP_ERROR_HANDLER(NRF_ERROR_NO_MEM);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TouchHandler::Process(void* instance) {
|
|
|
|
auto* app = static_cast<TouchHandler*>(instance);
|
|
|
|
app->Work();
|
|
|
|
}
|
|
|
|
|
|
|
|
void TouchHandler::Work() {
|
|
|
|
Pinetime::Drivers::Cst816S::TouchInfos info;
|
|
|
|
while (true) {
|
|
|
|
vTaskSuspend(taskHandle);
|
|
|
|
info = touchPanel.GetTouchInfo();
|
|
|
|
if (systemTask->IsSleeping()) {
|
|
|
|
systemTask->PushMessage(System::Messages::TouchWakeUp);
|
|
|
|
} else {
|
|
|
|
x = info.x;
|
|
|
|
y = info.y;
|
2021-07-15 17:07:55 -04:00
|
|
|
if (info.touching) {
|
2021-07-15 07:11:27 -04:00
|
|
|
if (!isCancelled) {
|
2021-07-15 17:07:55 -04:00
|
|
|
lvgl.SetNewTouchPoint(info.x, info.y, true);
|
2021-07-15 07:11:27 -04:00
|
|
|
}
|
|
|
|
if (info.gesture != Pinetime::Drivers::Cst816S::Gestures::None) {
|
|
|
|
if (prevGesture != info.gesture) {
|
|
|
|
prevGesture = info.gesture;
|
|
|
|
gesture = info.gesture;
|
|
|
|
}
|
|
|
|
}
|
2021-07-15 17:07:55 -04:00
|
|
|
} else {
|
|
|
|
if (isCancelled) {
|
|
|
|
lvgl.SetNewTouchPoint(-1, -1, false);
|
|
|
|
isCancelled = false;
|
|
|
|
} else {
|
|
|
|
lvgl.SetNewTouchPoint(info.x, info.y, false);
|
|
|
|
}
|
|
|
|
prevGesture = Pinetime::Drivers::Cst816S::Gestures::None;
|
2021-07-15 07:11:27 -04:00
|
|
|
}
|
|
|
|
systemTask->OnTouchEvent();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TouchHandler::Register(Pinetime::System::SystemTask* systemTask) {
|
|
|
|
this->systemTask = systemTask;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TouchHandler::WakeUp() {
|
|
|
|
vTaskResume(taskHandle);
|
|
|
|
}
|