2019-12-05 20:19:47 +00:00
|
|
|
#include "DisplayApp.h"
|
|
|
|
#include <FreeRTOS.h>
|
|
|
|
#include <task.h>
|
|
|
|
#include <libraries/log/nrf_log.h>
|
2019-12-07 16:11:50 +00:00
|
|
|
#include <nrf_font.h>
|
2019-12-26 17:33:40 +00:00
|
|
|
#include <queue.h>
|
2019-12-28 13:34:50 +00:00
|
|
|
#include <Components/DateTime/DateTimeController.h>
|
2020-01-03 15:32:31 +00:00
|
|
|
#include <drivers/Cst816s.h>
|
2020-01-11 16:14:12 +00:00
|
|
|
#include <string>
|
2020-02-16 17:32:36 +00:00
|
|
|
#include <DisplayApp/Screens/Tile.h>
|
2020-02-26 19:49:26 +00:00
|
|
|
#include <DisplayApp/Screens/Meter.h>
|
|
|
|
#include <DisplayApp/Screens/Gauge.h>
|
2020-03-15 17:03:11 +00:00
|
|
|
#include <DisplayApp/Screens/Brightness.h>
|
2020-08-14 07:46:37 +00:00
|
|
|
#include <DisplayApp/Screens/SystemInfo.h>
|
2020-07-11 20:37:28 +00:00
|
|
|
#include <DisplayApp/Screens/Music.h>
|
2020-03-28 18:05:28 +00:00
|
|
|
#include <Components/Ble/NotificationManager.h>
|
2020-05-02 12:16:57 +00:00
|
|
|
#include <DisplayApp/Screens/FirmwareUpdate.h>
|
2020-08-14 07:46:37 +00:00
|
|
|
#include <DisplayApp/Screens/ApplicationList.h>
|
2020-08-11 15:50:00 +00:00
|
|
|
#include <DisplayApp/Screens/FirmwareValidation.h>
|
2020-02-23 12:44:39 +00:00
|
|
|
#include "../SystemTask/SystemTask.h"
|
2019-12-05 20:19:47 +00:00
|
|
|
|
|
|
|
using namespace Pinetime::Applications;
|
|
|
|
|
2020-03-28 18:05:28 +00:00
|
|
|
DisplayApp::DisplayApp(Drivers::St7789 &lcd, Components::LittleVgl &lvgl, Drivers::Cst816S &touchPanel,
|
|
|
|
Controllers::Battery &batteryController, Controllers::Ble &bleController,
|
|
|
|
Controllers::DateTime &dateTimeController, Drivers::WatchdogView &watchdog,
|
|
|
|
System::SystemTask &systemTask,
|
|
|
|
Pinetime::Controllers::NotificationManager& notificationManager) :
|
2020-01-26 12:37:10 +00:00
|
|
|
lcd{lcd},
|
2020-02-10 20:05:33 +00:00
|
|
|
lvgl{lvgl},
|
2019-12-27 16:05:49 +00:00
|
|
|
batteryController{batteryController},
|
2019-12-28 13:34:50 +00:00
|
|
|
bleController{bleController},
|
2020-01-18 17:17:52 +00:00
|
|
|
dateTimeController{dateTimeController},
|
2020-03-22 11:03:17 +00:00
|
|
|
watchdog{watchdog},
|
|
|
|
touchPanel{touchPanel},
|
2020-02-23 15:14:03 +00:00
|
|
|
currentScreen{new Screens::Clock(this, dateTimeController, batteryController, bleController) },
|
2020-03-28 18:05:28 +00:00
|
|
|
systemTask{systemTask},
|
|
|
|
notificationManager{notificationManager} {
|
2019-12-27 15:05:35 +00:00
|
|
|
msgQueue = xQueueCreate(queueSize, itemSize);
|
2020-03-09 20:29:12 +00:00
|
|
|
onClockApp = true;
|
2020-03-25 20:23:40 +00:00
|
|
|
modal.reset(new Screens::Modal(this));
|
2019-12-27 15:05:35 +00:00
|
|
|
}
|
|
|
|
|
2019-12-05 20:19:47 +00:00
|
|
|
void DisplayApp::Start() {
|
2020-02-16 17:32:36 +00:00
|
|
|
if (pdPASS != xTaskCreate(DisplayApp::Process, "DisplayApp", 512, this, 0, &taskHandle))
|
2019-12-05 20:19:47 +00:00
|
|
|
APP_ERROR_HANDLER(NRF_ERROR_NO_MEM);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DisplayApp::Process(void *instance) {
|
2019-12-28 13:34:50 +00:00
|
|
|
auto *app = static_cast<DisplayApp *>(instance);
|
2019-12-05 20:19:47 +00:00
|
|
|
NRF_LOG_INFO("DisplayApp task started!");
|
2019-12-07 16:11:50 +00:00
|
|
|
app->InitHw();
|
2020-02-08 17:01:02 +00:00
|
|
|
|
2020-03-01 14:57:58 +00:00
|
|
|
// Send a dummy notification to unlock the lvgl display driver for the first iteration
|
|
|
|
xTaskNotifyGive(xTaskGetCurrentTaskHandle());
|
|
|
|
|
2019-12-05 20:19:47 +00:00
|
|
|
while (1) {
|
2020-02-10 20:05:33 +00:00
|
|
|
|
2019-12-07 18:15:33 +00:00
|
|
|
app->Refresh();
|
2020-02-23 12:44:39 +00:00
|
|
|
|
2019-12-05 20:19:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-07 16:11:50 +00:00
|
|
|
void DisplayApp::InitHw() {
|
2020-03-15 17:03:11 +00:00
|
|
|
brightnessController.Init();
|
2019-12-07 18:15:33 +00:00
|
|
|
}
|
|
|
|
|
2020-01-22 20:08:53 +00:00
|
|
|
uint32_t acc = 0;
|
|
|
|
uint32_t count = 0;
|
|
|
|
bool toggle = true;
|
2019-12-07 18:15:33 +00:00
|
|
|
void DisplayApp::Refresh() {
|
2019-12-26 17:33:40 +00:00
|
|
|
TickType_t queueTimeout;
|
2019-12-28 13:34:50 +00:00
|
|
|
switch (state) {
|
2019-12-26 17:33:40 +00:00
|
|
|
case States::Idle:
|
|
|
|
IdleState();
|
|
|
|
queueTimeout = portMAX_DELAY;
|
|
|
|
break;
|
|
|
|
case States::Running:
|
|
|
|
RunningState();
|
2020-02-16 17:32:36 +00:00
|
|
|
queueTimeout = 20;
|
2019-12-26 17:33:40 +00:00
|
|
|
break;
|
2020-08-17 14:31:00 +00:00
|
|
|
default:
|
|
|
|
queueTimeout = portMAX_DELAY;
|
|
|
|
break;
|
2019-12-26 17:33:40 +00:00
|
|
|
}
|
2020-02-12 18:57:04 +00:00
|
|
|
|
2019-12-26 17:33:40 +00:00
|
|
|
Messages msg;
|
2019-12-28 13:34:50 +00:00
|
|
|
if (xQueueReceive(msgQueue, &msg, queueTimeout)) {
|
|
|
|
switch (msg) {
|
2019-12-26 17:33:40 +00:00
|
|
|
case Messages::GoToSleep:
|
2020-03-15 17:03:11 +00:00
|
|
|
brightnessController.Backup();
|
|
|
|
while(brightnessController.Level() != Controllers::BrightnessController::Levels::Off) {
|
|
|
|
brightnessController.Lower();
|
|
|
|
vTaskDelay(100);
|
|
|
|
}
|
2020-01-26 12:37:10 +00:00
|
|
|
lcd.DisplayOff();
|
|
|
|
lcd.Sleep();
|
2020-01-17 21:16:45 +00:00
|
|
|
touchPanel.Sleep();
|
2019-12-26 17:33:40 +00:00
|
|
|
state = States::Idle;
|
|
|
|
break;
|
|
|
|
case Messages::GoToRunning:
|
2020-01-26 12:37:10 +00:00
|
|
|
lcd.Wakeup();
|
2020-01-17 21:16:45 +00:00
|
|
|
touchPanel.Wakeup();
|
|
|
|
|
2020-01-26 12:37:10 +00:00
|
|
|
lcd.DisplayOn();
|
2020-03-15 17:03:11 +00:00
|
|
|
brightnessController.Restore();
|
2019-12-26 17:33:40 +00:00
|
|
|
state = States::Running;
|
|
|
|
break;
|
2019-12-28 13:34:50 +00:00
|
|
|
case Messages::UpdateDateTime:
|
2020-03-25 20:23:40 +00:00
|
|
|
// modal->Show();
|
2019-12-28 13:34:50 +00:00
|
|
|
break;
|
|
|
|
case Messages::UpdateBleConnection:
|
2020-02-16 17:32:36 +00:00
|
|
|
// clockScreen.SetBleConnectionState(bleController.IsConnected() ? Screens::Clock::BleConnectionStates::Connected : Screens::Clock::BleConnectionStates::NotConnected);
|
2019-12-28 13:34:50 +00:00
|
|
|
break;
|
|
|
|
case Messages::UpdateBatteryLevel:
|
2020-02-16 17:32:36 +00:00
|
|
|
// clockScreen.SetBatteryPercentRemaining(batteryController.PercentRemaining());
|
2019-12-28 13:34:50 +00:00
|
|
|
break;
|
2020-03-25 20:23:40 +00:00
|
|
|
case Messages::NewNotification: {
|
2020-03-28 18:05:28 +00:00
|
|
|
auto notification = notificationManager.Pop();
|
|
|
|
modal->Show(notification.message.data());
|
2020-03-25 20:23:40 +00:00
|
|
|
}
|
|
|
|
break;
|
2020-03-09 20:29:12 +00:00
|
|
|
case Messages::TouchEvent: {
|
|
|
|
if (state != States::Running) break;
|
|
|
|
auto gesture = OnTouchEvent();
|
2020-03-15 20:01:24 +00:00
|
|
|
if(!currentScreen->OnTouchEvent(gesture)) {
|
|
|
|
switch (gesture) {
|
|
|
|
case TouchEvents::SwipeUp:
|
|
|
|
currentScreen->OnButtonPushed();
|
|
|
|
lvgl.SetFullRefresh(Components::LittleVgl::FullRefreshDirections::Up);
|
|
|
|
break;
|
|
|
|
case TouchEvents::SwipeDown:
|
|
|
|
currentScreen->OnButtonPushed();
|
|
|
|
lvgl.SetFullRefresh(Components::LittleVgl::FullRefreshDirections::Down);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2020-03-09 20:29:12 +00:00
|
|
|
}
|
|
|
|
}
|
2020-01-03 15:32:31 +00:00
|
|
|
break;
|
2020-02-16 17:32:36 +00:00
|
|
|
case Messages::ButtonPushed:
|
2020-03-09 20:29:12 +00:00
|
|
|
if(onClockApp)
|
|
|
|
systemTask.PushMessage(System::SystemTask::Messages::GoToSleep);
|
2020-03-11 20:35:06 +00:00
|
|
|
else {
|
|
|
|
auto buttonUsedByApp = currentScreen->OnButtonPushed();
|
|
|
|
if (!buttonUsedByApp) {
|
|
|
|
systemTask.PushMessage(System::SystemTask::Messages::GoToSleep);
|
|
|
|
} else {
|
|
|
|
lvgl.SetFullRefresh(Components::LittleVgl::FullRefreshDirections::Up);
|
2020-03-09 20:29:12 +00:00
|
|
|
}
|
2020-03-08 20:46:25 +00:00
|
|
|
}
|
2020-03-01 18:09:59 +00:00
|
|
|
|
2020-03-09 20:29:12 +00:00
|
|
|
// lvgl.SetFullRefresh(Components::LittleVgl::FullRefreshDirections::Down);
|
|
|
|
// currentScreen.reset(nullptr);
|
|
|
|
// if(toggle) {
|
|
|
|
// currentScreen.reset(new Screens::Tile(this));
|
|
|
|
// toggle = false;
|
|
|
|
// } else {
|
|
|
|
// currentScreen.reset(new Screens::Clock(this, dateTimeController, batteryController, bleController));
|
|
|
|
// toggle = true;
|
|
|
|
// }
|
|
|
|
|
2020-05-02 12:16:57 +00:00
|
|
|
break;
|
|
|
|
case Messages::BleFirmwareUpdateStarted:
|
|
|
|
lvgl.SetFullRefresh(Components::LittleVgl::FullRefreshDirections::Down);
|
|
|
|
currentScreen.reset(nullptr);
|
|
|
|
currentScreen.reset(new Screens::FirmwareUpdate(this, bleController));
|
2020-06-01 14:30:24 +00:00
|
|
|
onClockApp = false;
|
2020-05-02 12:16:57 +00:00
|
|
|
|
2020-02-23 12:44:39 +00:00
|
|
|
break;
|
2019-12-26 17:33:40 +00:00
|
|
|
}
|
|
|
|
}
|
2020-08-20 19:09:45 +00:00
|
|
|
|
|
|
|
if(touchMode == TouchModes::Polling) {
|
|
|
|
auto info = touchPanel.GetTouchInfo();
|
2020-08-21 09:55:59 +00:00
|
|
|
if(info.action == 2) {// 2 = contact
|
|
|
|
if(!currentScreen->OnTouchEvent(info.x, info.y)) {
|
|
|
|
lvgl.SetNewTapEvent(info.x, info.y);
|
|
|
|
}
|
|
|
|
}
|
2020-08-20 19:09:45 +00:00
|
|
|
}
|
2019-12-26 17:33:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DisplayApp::RunningState() {
|
2020-02-16 17:32:36 +00:00
|
|
|
// clockScreen.SetCurrentDateTime(dateTimeController.CurrentDateTime());
|
2019-12-27 16:05:49 +00:00
|
|
|
|
2020-02-23 15:14:03 +00:00
|
|
|
if(!currentScreen->Refresh()) {
|
2020-02-23 12:44:39 +00:00
|
|
|
currentScreen.reset(nullptr);
|
2020-03-10 19:21:41 +00:00
|
|
|
lvgl.SetFullRefresh(Components::LittleVgl::FullRefreshDirections::Up);
|
2020-03-09 20:29:12 +00:00
|
|
|
onClockApp = false;
|
2020-02-23 12:44:39 +00:00
|
|
|
switch(nextApp) {
|
|
|
|
case Apps::None:
|
2020-08-14 07:46:37 +00:00
|
|
|
case Apps::Launcher: currentScreen.reset(new Screens::ApplicationList(this)); break;
|
2020-03-09 20:29:12 +00:00
|
|
|
case Apps::Clock:
|
|
|
|
currentScreen.reset(new Screens::Clock(this, dateTimeController, batteryController, bleController));
|
|
|
|
onClockApp = true;
|
|
|
|
break;
|
2020-03-22 11:03:17 +00:00
|
|
|
// case Apps::Test: currentScreen.reset(new Screens::Message(this)); break;
|
2020-08-14 07:46:37 +00:00
|
|
|
case Apps::SysInfo: currentScreen.reset(new Screens::SystemInfo(this, dateTimeController, batteryController, brightnessController, bleController, watchdog)); break;
|
2020-02-26 19:49:26 +00:00
|
|
|
case Apps::Meter: currentScreen.reset(new Screens::Meter(this)); break;
|
|
|
|
case Apps::Gauge: currentScreen.reset(new Screens::Gauge(this)); break;
|
2020-03-15 17:03:11 +00:00
|
|
|
case Apps::Brightness : currentScreen.reset(new Screens::Brightness(this, brightnessController)); break;
|
2020-07-15 09:02:01 +00:00
|
|
|
case Apps::Music : currentScreen.reset(new Screens::Music(this, systemTask.nimble().music())); break;
|
2020-08-14 18:47:21 +00:00
|
|
|
case Apps::FirmwareValidation: currentScreen.reset(new Screens::FirmwareValidation(this, validator)); break;
|
2020-02-16 17:32:36 +00:00
|
|
|
}
|
2020-02-23 12:44:39 +00:00
|
|
|
nextApp = Apps::None;
|
2020-01-19 18:47:49 +00:00
|
|
|
}
|
2020-02-23 12:44:39 +00:00
|
|
|
lv_task_handler();
|
2019-12-28 13:34:50 +00:00
|
|
|
}
|
|
|
|
|
2019-12-26 17:33:40 +00:00
|
|
|
void DisplayApp::IdleState() {
|
|
|
|
|
2019-12-21 16:58:00 +00:00
|
|
|
}
|
|
|
|
|
2019-12-26 17:33:40 +00:00
|
|
|
void DisplayApp::PushMessage(DisplayApp::Messages msg) {
|
|
|
|
BaseType_t xHigherPriorityTaskWoken;
|
|
|
|
xHigherPriorityTaskWoken = pdFALSE;
|
2019-12-28 13:34:50 +00:00
|
|
|
xQueueSendFromISR(msgQueue, &msg, &xHigherPriorityTaskWoken);
|
|
|
|
if (xHigherPriorityTaskWoken) {
|
2019-12-26 17:33:40 +00:00
|
|
|
/* Actual macro used here is port specific. */
|
|
|
|
// TODO : should I do something here?
|
|
|
|
}
|
2019-12-21 21:31:06 +00:00
|
|
|
}
|
2020-01-03 15:32:31 +00:00
|
|
|
|
2020-03-15 20:01:24 +00:00
|
|
|
TouchEvents DisplayApp::OnTouchEvent() {
|
2020-03-09 20:29:12 +00:00
|
|
|
auto info = touchPanel.GetTouchInfo();
|
|
|
|
if(info.isTouch) {
|
|
|
|
switch(info.gesture) {
|
|
|
|
case Pinetime::Drivers::Cst816S::Gestures::SingleTap:
|
2020-08-20 19:09:45 +00:00
|
|
|
if(touchMode == TouchModes::Gestures)
|
|
|
|
lvgl.SetNewTapEvent(info.x, info.y);
|
2020-03-15 20:01:24 +00:00
|
|
|
return TouchEvents::Tap;
|
2020-03-09 20:29:12 +00:00
|
|
|
case Pinetime::Drivers::Cst816S::Gestures::LongPress:
|
2020-03-15 20:01:24 +00:00
|
|
|
return TouchEvents::LongTap;
|
2020-03-09 20:29:12 +00:00
|
|
|
case Pinetime::Drivers::Cst816S::Gestures::DoubleTap:
|
2020-03-15 20:01:24 +00:00
|
|
|
return TouchEvents::DoubleTap;
|
2020-03-09 20:29:12 +00:00
|
|
|
case Pinetime::Drivers::Cst816S::Gestures::SlideRight:
|
2020-03-15 20:01:24 +00:00
|
|
|
return TouchEvents::SwipeRight;
|
2020-03-09 20:29:12 +00:00
|
|
|
case Pinetime::Drivers::Cst816S::Gestures::SlideLeft:
|
2020-03-15 20:01:24 +00:00
|
|
|
return TouchEvents::SwipeLeft;
|
2020-03-09 20:29:12 +00:00
|
|
|
case Pinetime::Drivers::Cst816S::Gestures::SlideDown:
|
2020-03-15 20:01:24 +00:00
|
|
|
return TouchEvents::SwipeDown;
|
2020-03-09 20:29:12 +00:00
|
|
|
case Pinetime::Drivers::Cst816S::Gestures::SlideUp:
|
2020-03-15 20:01:24 +00:00
|
|
|
return TouchEvents::SwipeUp;
|
2020-03-09 20:29:12 +00:00
|
|
|
case Pinetime::Drivers::Cst816S::Gestures::None:
|
|
|
|
default:
|
2020-03-15 20:01:24 +00:00
|
|
|
return TouchEvents::None;
|
2020-03-09 20:29:12 +00:00
|
|
|
}
|
|
|
|
}
|
2020-03-15 20:01:24 +00:00
|
|
|
return TouchEvents::None;
|
2020-01-03 15:32:31 +00:00
|
|
|
}
|
2020-02-23 12:44:39 +00:00
|
|
|
|
2020-08-14 07:46:37 +00:00
|
|
|
void DisplayApp::StartApp(Apps app) {
|
2020-02-23 12:44:39 +00:00
|
|
|
nextApp = app;
|
|
|
|
}
|
2020-03-22 11:03:17 +00:00
|
|
|
|
|
|
|
void DisplayApp::SetFullRefresh(DisplayApp::FullRefreshDirections direction) {
|
|
|
|
switch(direction){
|
|
|
|
case DisplayApp::FullRefreshDirections::Down:
|
|
|
|
lvgl.SetFullRefresh(Components::LittleVgl::FullRefreshDirections::Down);
|
|
|
|
break;
|
|
|
|
case DisplayApp::FullRefreshDirections::Up:
|
|
|
|
lvgl.SetFullRefresh(Components::LittleVgl::FullRefreshDirections::Up);
|
|
|
|
break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2020-08-20 19:09:45 +00:00
|
|
|
|
|
|
|
void DisplayApp::SetTouchMode(DisplayApp::TouchModes mode) {
|
|
|
|
touchMode = mode;
|
|
|
|
}
|