2019-12-05 20:19:47 +00:00
|
|
|
#include "DisplayApp.h"
|
|
|
|
#include <FreeRTOS.h>
|
|
|
|
#include <task.h>
|
|
|
|
#include <libraries/log/nrf_log.h>
|
|
|
|
#include <boards.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-08 17:01:02 +00:00
|
|
|
#include <lvgl/lvgl.h>
|
2020-02-16 17:32:36 +00:00
|
|
|
#include <DisplayApp/Screens/Tile.h>
|
2020-02-23 15:14:03 +00:00
|
|
|
#include <DisplayApp/Screens/Message.h>
|
2020-02-26 19:49:26 +00:00
|
|
|
#include <DisplayApp/Screens/Meter.h>
|
|
|
|
#include <DisplayApp/Screens/Gauge.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-01-26 12:37:10 +00:00
|
|
|
DisplayApp::DisplayApp(Pinetime::Drivers::St7789& lcd,
|
2020-02-10 20:05:33 +00:00
|
|
|
Pinetime::Components::LittleVgl& lvgl,
|
2020-01-26 12:37:10 +00:00
|
|
|
Pinetime::Drivers::Cst816S& touchPanel,
|
|
|
|
Controllers::Battery &batteryController,
|
2019-12-28 13:34:50 +00:00
|
|
|
Controllers::Ble &bleController,
|
2020-02-23 12:44:39 +00:00
|
|
|
Controllers::DateTime &dateTimeController,
|
|
|
|
Pinetime::System::SystemTask& systemTask) :
|
2020-01-26 12:37:10 +00:00
|
|
|
lcd{lcd},
|
2020-02-10 20:05:33 +00:00
|
|
|
lvgl{lvgl},
|
2020-01-26 12:37:10 +00:00
|
|
|
touchPanel{touchPanel},
|
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-02-23 15:14:03 +00:00
|
|
|
currentScreen{new Screens::Clock(this, dateTimeController, batteryController, bleController) },
|
2020-02-23 12:44:39 +00:00
|
|
|
systemTask{systemTask} {
|
2019-12-27 15:05:35 +00:00
|
|
|
msgQueue = xQueueCreate(queueSize, itemSize);
|
|
|
|
}
|
|
|
|
|
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-01-18 19:53:32 +00:00
|
|
|
nrf_gpio_cfg_output(pinLcdBacklight1);
|
|
|
|
nrf_gpio_cfg_output(pinLcdBacklight2);
|
|
|
|
nrf_gpio_cfg_output(pinLcdBacklight3);
|
|
|
|
nrf_gpio_pin_clear(pinLcdBacklight1);
|
|
|
|
nrf_gpio_pin_clear(pinLcdBacklight2);
|
|
|
|
nrf_gpio_pin_clear(pinLcdBacklight3);
|
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-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-01-18 19:53:32 +00:00
|
|
|
nrf_gpio_pin_set(pinLcdBacklight3);
|
2019-12-26 17:33:40 +00:00
|
|
|
vTaskDelay(100);
|
2020-01-18 19:53:32 +00:00
|
|
|
nrf_gpio_pin_set(pinLcdBacklight2);
|
2019-12-26 17:33:40 +00:00
|
|
|
vTaskDelay(100);
|
2020-01-18 19:53:32 +00:00
|
|
|
nrf_gpio_pin_set(pinLcdBacklight1);
|
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-01-18 19:53:32 +00:00
|
|
|
nrf_gpio_pin_clear(pinLcdBacklight3);
|
|
|
|
nrf_gpio_pin_clear(pinLcdBacklight2);
|
|
|
|
nrf_gpio_pin_clear(pinLcdBacklight1);
|
2019-12-26 17:33:40 +00:00
|
|
|
state = States::Running;
|
|
|
|
break;
|
2019-12-28 13:34:50 +00:00
|
|
|
case Messages::UpdateDateTime:
|
|
|
|
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-01-03 15:32:31 +00:00
|
|
|
case Messages::TouchEvent:
|
|
|
|
if(state != States::Running) break;
|
|
|
|
OnTouchEvent();
|
|
|
|
break;
|
2020-02-16 17:32:36 +00:00
|
|
|
case Messages::ButtonPushed:
|
2020-03-08 20:46:25 +00:00
|
|
|
// if(!currentScreen->OnButtonPushed()) {
|
|
|
|
// systemTask.PushMessage(System::SystemTask::Messages::GoToSleep);
|
2020-03-01 18:09:59 +00:00
|
|
|
// }
|
2020-03-08 20:46:25 +00:00
|
|
|
lvgl.SetFullRefresh();
|
|
|
|
lv_disp_set_direction(lv_disp_get_default(), 0);
|
|
|
|
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-03-01 18:09:59 +00:00
|
|
|
|
2020-02-23 12:44:39 +00:00
|
|
|
break;
|
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-03-08 20:46:25 +00:00
|
|
|
lvgl.SetFullRefresh();
|
2020-02-23 12:44:39 +00:00
|
|
|
currentScreen.reset(nullptr);
|
|
|
|
switch(nextApp) {
|
|
|
|
case Apps::None:
|
|
|
|
case Apps::Launcher: currentScreen.reset(new Screens::Tile(this)); break;
|
2020-02-23 15:14:03 +00:00
|
|
|
case Apps::Clock: currentScreen.reset(new Screens::Clock(this, dateTimeController, batteryController, bleController)); break;
|
|
|
|
case Apps::Test: currentScreen.reset(new Screens::Message(this)); 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-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
|
|
|
|
|
|
|
static uint16_t pointColor = 0x07e0;
|
|
|
|
void DisplayApp::OnTouchEvent() {
|
2020-02-16 17:32:36 +00:00
|
|
|
// auto info = touchPanel.GetTouchInfo();
|
|
|
|
//
|
|
|
|
// if(info.isTouch) {
|
2020-02-23 15:14:03 +00:00
|
|
|
// lcd.DrawPixel(info.x, info.y, pointColor);
|
2020-02-16 17:32:36 +00:00
|
|
|
// pointColor+=10;
|
|
|
|
// }
|
2020-01-03 15:32:31 +00:00
|
|
|
}
|
2020-02-23 12:44:39 +00:00
|
|
|
|
|
|
|
void DisplayApp::StartApp(DisplayApp::Apps app) {
|
|
|
|
nextApp = app;
|
|
|
|
}
|