InfiniTime/src/displayapp/screens/FirmwareUpdate.cpp

96 lines
3.1 KiB
C++
Raw Normal View History

#include "displayapp/screens/FirmwareUpdate.h"
2020-11-15 15:49:36 +00:00
#include <lvgl/lvgl.h>
#include "components/ble/BleController.h"
#include "displayapp/DisplayApp.h"
using namespace Pinetime::Applications::Screens;
FirmwareUpdate::FirmwareUpdate(Pinetime::Applications::DisplayApp* app, Pinetime::Controllers::Ble& bleController)
: Screen(app), bleController {bleController} {
2020-10-04 11:53:11 +00:00
titleLabel = lv_label_create(lv_scr_act(), nullptr);
lv_label_set_text_static(titleLabel, "Firmware update");
2020-10-04 11:53:11 +00:00
lv_obj_align(titleLabel, nullptr, LV_ALIGN_IN_TOP_MID, 0, 50);
2020-10-04 11:53:11 +00:00
bar1 = lv_bar_create(lv_scr_act(), nullptr);
lv_obj_set_size(bar1, 200, 30);
2020-10-04 11:53:11 +00:00
lv_obj_align(bar1, nullptr, LV_ALIGN_CENTER, 0, 0);
2022-04-09 11:47:43 +00:00
lv_bar_set_range(bar1, 0, 1000);
lv_bar_set_value(bar1, 0, LV_ANIM_OFF);
2020-10-04 11:53:11 +00:00
percentLabel = lv_label_create(lv_scr_act(), nullptr);
lv_label_set_text_static(percentLabel, "Waiting...");
2022-04-09 11:47:43 +00:00
lv_label_set_recolor(percentLabel, true);
lv_obj_set_auto_realign(percentLabel, true);
lv_obj_align(percentLabel, bar1, LV_ALIGN_OUT_TOP_MID, 0, 60);
2021-07-19 13:26:12 +00:00
taskRefresh = lv_task_create(RefreshTaskCallback, LV_DISP_DEF_REFR_PERIOD, LV_TASK_PRIO_MID, this);
startTime = xTaskGetTickCount();
}
FirmwareUpdate::~FirmwareUpdate() {
2021-07-19 13:26:12 +00:00
lv_task_del(taskRefresh);
lv_obj_clean(lv_scr_act());
}
2021-07-19 13:26:12 +00:00
void FirmwareUpdate::Refresh() {
switch (bleController.State()) {
default:
case Pinetime::Controllers::Ble::FirmwareUpdateStates::Idle:
// This condition makes sure that the app is exited if somehow it got
// launched without a firmware update. This should never happen.
if (state != States::Error) {
if (xTaskGetTickCount() - startTime > (60 * 1024)) {
UpdateError();
state = States::Error;
}
} else if (xTaskGetTickCount() - startTime > (5 * 1024)) {
running = false;
}
break;
case Pinetime::Controllers::Ble::FirmwareUpdateStates::Running:
2022-04-09 11:47:43 +00:00
if (state != States::Running) {
state = States::Running;
2022-04-09 11:47:43 +00:00
}
2021-07-19 13:26:12 +00:00
DisplayProgression();
break;
case Pinetime::Controllers::Ble::FirmwareUpdateStates::Validated:
if (state != States::Validated) {
UpdateValidated();
state = States::Validated;
}
break;
case Pinetime::Controllers::Ble::FirmwareUpdateStates::Error:
if (state != States::Error) {
UpdateError();
state = States::Error;
}
if (xTaskGetTickCount() - startTime > (5 * 1024)) {
running = false;
}
break;
}
}
2021-07-19 13:26:12 +00:00
void FirmwareUpdate::DisplayProgression() const {
2022-04-09 11:47:43 +00:00
const uint32_t current = bleController.FirmwareUpdateCurrentBytes();
const uint32_t total = bleController.FirmwareUpdateTotalBytes();
const int16_t permille = current / (total / 1000);
lv_label_set_text_fmt(percentLabel, "%d %%", permille / 10);
2022-04-09 11:47:43 +00:00
lv_bar_set_value(bar1, permille, LV_ANIM_OFF);
}
void FirmwareUpdate::UpdateValidated() {
lv_label_set_text_static(percentLabel, "#00ff00 Image Ok!#");
}
void FirmwareUpdate::UpdateError() {
lv_label_set_text_static(percentLabel, "#ff0000 Error!#");
startTime = xTaskGetTickCount();
}
bool FirmwareUpdate::OnButtonPushed() {
return true;
}