2021-10-13 20:08:35 +00:00
|
|
|
#include "displayapp/screens/SystemInfo.h"
|
2020-11-15 15:49:36 +00:00
|
|
|
#include <lvgl/lvgl.h>
|
2021-10-13 20:08:35 +00:00
|
|
|
#include "displayapp/DisplayApp.h"
|
|
|
|
#include "displayapp/screens/Label.h"
|
2020-11-15 15:49:36 +00:00
|
|
|
#include "Version.h"
|
2021-06-26 18:53:32 +00:00
|
|
|
#include "BootloaderVersion.h"
|
2020-11-15 15:49:36 +00:00
|
|
|
#include "components/battery/BatteryController.h"
|
|
|
|
#include "components/ble/BleController.h"
|
|
|
|
#include "components/brightness/BrightnessController.h"
|
|
|
|
#include "components/datetime/DateTimeController.h"
|
2021-06-19 18:27:59 +00:00
|
|
|
#include "components/motion/MotionController.h"
|
2020-11-15 15:49:36 +00:00
|
|
|
#include "drivers/Watchdog.h"
|
2020-03-22 11:03:17 +00:00
|
|
|
|
|
|
|
using namespace Pinetime::Applications::Screens;
|
|
|
|
|
2021-06-19 18:27:59 +00:00
|
|
|
namespace {
|
|
|
|
const char* ToString(const Pinetime::Controllers::MotionController::DeviceTypes deviceType) {
|
|
|
|
switch (deviceType) {
|
|
|
|
case Pinetime::Controllers::MotionController::DeviceTypes::BMA421:
|
|
|
|
return "BMA421";
|
|
|
|
case Pinetime::Controllers::MotionController::DeviceTypes::BMA425:
|
|
|
|
return "BMA425";
|
2021-07-17 04:41:15 +00:00
|
|
|
case Pinetime::Controllers::MotionController::DeviceTypes::Unknown:
|
|
|
|
return "???";
|
2021-06-19 18:27:59 +00:00
|
|
|
}
|
|
|
|
return "???";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
SystemInfo::SystemInfo(Pinetime::Applications::DisplayApp* app,
|
|
|
|
Pinetime::Controllers::DateTime& dateTimeController,
|
2020-08-14 07:46:37 +00:00
|
|
|
Pinetime::Controllers::Battery& batteryController,
|
|
|
|
Pinetime::Controllers::BrightnessController& brightnessController,
|
2020-06-08 19:51:34 +00:00
|
|
|
Pinetime::Controllers::Ble& bleController,
|
2021-06-19 18:27:59 +00:00
|
|
|
Pinetime::Drivers::WatchdogView& watchdog,
|
2021-07-14 14:11:16 +00:00
|
|
|
Pinetime::Controllers::MotionController& motionController,
|
|
|
|
Pinetime::Drivers::Cst816S& touchPanel)
|
2021-04-18 17:28:14 +00:00
|
|
|
: Screen(app),
|
|
|
|
dateTimeController {dateTimeController},
|
|
|
|
batteryController {batteryController},
|
|
|
|
brightnessController {brightnessController},
|
|
|
|
bleController {bleController},
|
|
|
|
watchdog {watchdog},
|
2021-06-19 18:27:59 +00:00
|
|
|
motionController{motionController},
|
2021-07-14 14:11:16 +00:00
|
|
|
touchPanel{touchPanel},
|
2021-04-18 17:28:14 +00:00
|
|
|
screens {app,
|
|
|
|
0,
|
|
|
|
{[this]() -> std::unique_ptr<Screen> {
|
|
|
|
return CreateScreen1();
|
|
|
|
},
|
|
|
|
[this]() -> std::unique_ptr<Screen> {
|
|
|
|
return CreateScreen2();
|
|
|
|
},
|
|
|
|
[this]() -> std::unique_ptr<Screen> {
|
|
|
|
return CreateScreen3();
|
|
|
|
},
|
|
|
|
[this]() -> std::unique_ptr<Screen> {
|
|
|
|
return CreateScreen4();
|
|
|
|
},
|
|
|
|
[this]() -> std::unique_ptr<Screen> {
|
|
|
|
return CreateScreen5();
|
|
|
|
}},
|
|
|
|
Screens::ScreenListModes::UpDown} {
|
|
|
|
}
|
2020-03-22 11:14:38 +00:00
|
|
|
|
2020-08-14 07:46:37 +00:00
|
|
|
SystemInfo::~SystemInfo() {
|
|
|
|
lv_obj_clean(lv_scr_act());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SystemInfo::OnTouchEvent(Pinetime::Applications::TouchEvents event) {
|
|
|
|
return screens.OnTouchEvent(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_ptr<Screen> SystemInfo::CreateScreen1() {
|
2021-04-18 17:28:14 +00:00
|
|
|
lv_obj_t* label = lv_label_create(lv_scr_act(), nullptr);
|
2021-04-04 02:08:51 +00:00
|
|
|
lv_label_set_recolor(label, true);
|
2021-04-18 17:28:14 +00:00
|
|
|
lv_label_set_text_fmt(label,
|
|
|
|
"#FFFF00 InfiniTime#\n\n"
|
2021-06-26 18:53:32 +00:00
|
|
|
"#444444 Version# %ld.%ld.%ld\n"
|
|
|
|
"#444444 Short Ref# %s\n"
|
2021-04-18 17:28:14 +00:00
|
|
|
"#444444 Build date#\n"
|
2021-05-10 12:13:33 +00:00
|
|
|
"%s\n"
|
2021-06-26 18:53:32 +00:00
|
|
|
"%s\n\n"
|
|
|
|
"#444444 Bootloader# %s",
|
2021-04-18 17:28:14 +00:00
|
|
|
Version::Major(),
|
|
|
|
Version::Minor(),
|
|
|
|
Version::Patch(),
|
2021-05-13 22:09:40 +00:00
|
|
|
Version::GitCommitHash(),
|
2021-04-18 17:28:14 +00:00
|
|
|
__DATE__,
|
2021-06-26 18:53:32 +00:00
|
|
|
__TIME__,
|
|
|
|
BootloaderVersion::VersionString());
|
2021-04-04 02:08:51 +00:00
|
|
|
lv_label_set_align(label, LV_LABEL_ALIGN_CENTER);
|
2021-04-11 16:20:15 +00:00
|
|
|
lv_obj_align(label, lv_scr_act(), LV_ALIGN_CENTER, 0, 0);
|
2021-06-10 19:20:27 +00:00
|
|
|
return std::make_unique<Screens::Label>(0, 5, app, label);
|
2021-04-04 02:08:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_ptr<Screen> SystemInfo::CreateScreen2() {
|
2021-07-11 14:55:06 +00:00
|
|
|
auto batteryPercent = batteryController.PercentRemaining();
|
2020-08-14 07:46:37 +00:00
|
|
|
auto resetReason = [this]() {
|
2020-03-22 11:03:17 +00:00
|
|
|
switch (watchdog.ResetReason()) {
|
2021-04-18 17:28:14 +00:00
|
|
|
case Drivers::Watchdog::ResetReasons::Watchdog:
|
|
|
|
return "wtdg";
|
|
|
|
case Drivers::Watchdog::ResetReasons::HardReset:
|
|
|
|
return "hardr";
|
|
|
|
case Drivers::Watchdog::ResetReasons::NFC:
|
|
|
|
return "nfc";
|
|
|
|
case Drivers::Watchdog::ResetReasons::SoftReset:
|
|
|
|
return "softr";
|
|
|
|
case Drivers::Watchdog::ResetReasons::CpuLockup:
|
|
|
|
return "cpulock";
|
|
|
|
case Drivers::Watchdog::ResetReasons::SystemOff:
|
|
|
|
return "off";
|
|
|
|
case Drivers::Watchdog::ResetReasons::LpComp:
|
|
|
|
return "lpcomp";
|
|
|
|
case Drivers::Watchdog::ResetReasons::DebugInterface:
|
|
|
|
return "dbg";
|
|
|
|
case Drivers::Watchdog::ResetReasons::ResetPin:
|
|
|
|
return "rst";
|
|
|
|
default:
|
|
|
|
return "?";
|
2020-03-22 11:03:17 +00:00
|
|
|
}
|
|
|
|
}();
|
|
|
|
|
2020-06-07 18:04:43 +00:00
|
|
|
// uptime
|
2021-04-18 17:28:14 +00:00
|
|
|
static constexpr uint32_t secondsInADay = 60 * 60 * 24;
|
|
|
|
static constexpr uint32_t secondsInAnHour = 60 * 60;
|
2020-06-07 18:04:43 +00:00
|
|
|
static constexpr uint32_t secondsInAMinute = 60;
|
|
|
|
uint32_t uptimeSeconds = dateTimeController.Uptime().count();
|
|
|
|
uint32_t uptimeDays = (uptimeSeconds / secondsInADay);
|
|
|
|
uptimeSeconds = uptimeSeconds % secondsInADay;
|
|
|
|
uint32_t uptimeHours = uptimeSeconds / secondsInAnHour;
|
|
|
|
uptimeSeconds = uptimeSeconds % secondsInAnHour;
|
|
|
|
uint32_t uptimeMinutes = uptimeSeconds / secondsInAMinute;
|
|
|
|
uptimeSeconds = uptimeSeconds % secondsInAMinute;
|
|
|
|
// TODO handle more than 100 days of uptime
|
2020-03-22 11:03:17 +00:00
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
lv_obj_t* label = lv_label_create(lv_scr_act(), nullptr);
|
2021-04-04 02:08:51 +00:00
|
|
|
lv_label_set_recolor(label, true);
|
2021-04-18 17:28:14 +00:00
|
|
|
lv_label_set_text_fmt(label,
|
|
|
|
"#444444 Date# %02d/%02d/%04d\n"
|
|
|
|
"#444444 Time# %02d:%02d:%02d\n"
|
|
|
|
"#444444 Uptime#\n %02lud %02lu:%02lu:%02lu\n"
|
2021-07-02 15:30:32 +00:00
|
|
|
"#444444 Battery# %d%%/%03imV\n"
|
2021-04-18 17:28:14 +00:00
|
|
|
"#444444 Backlight# %s\n"
|
2021-06-19 18:27:59 +00:00
|
|
|
"#444444 Last reset# %s\n"
|
2021-07-14 14:11:16 +00:00
|
|
|
"#444444 Accel.# %s\n"
|
|
|
|
"#444444 Touch.# %x.%x.%x\n",
|
2021-04-18 17:28:14 +00:00
|
|
|
dateTimeController.Day(),
|
|
|
|
static_cast<uint8_t>(dateTimeController.Month()),
|
|
|
|
dateTimeController.Year(),
|
|
|
|
dateTimeController.Hours(),
|
|
|
|
dateTimeController.Minutes(),
|
|
|
|
dateTimeController.Seconds(),
|
|
|
|
uptimeDays,
|
|
|
|
uptimeHours,
|
|
|
|
uptimeMinutes,
|
|
|
|
uptimeSeconds,
|
|
|
|
batteryPercent,
|
2021-07-02 15:30:32 +00:00
|
|
|
batteryController.Voltage(),
|
2021-04-18 17:28:14 +00:00
|
|
|
brightnessController.ToString(),
|
2021-06-19 18:27:59 +00:00
|
|
|
resetReason,
|
2021-07-14 14:11:16 +00:00
|
|
|
ToString(motionController.DeviceType()),
|
|
|
|
touchPanel.GetChipId(),
|
|
|
|
touchPanel.GetVendorId(),
|
|
|
|
touchPanel.GetFwVersion());
|
2021-04-11 16:20:15 +00:00
|
|
|
lv_obj_align(label, lv_scr_act(), LV_ALIGN_CENTER, 0, 0);
|
2021-06-12 09:12:39 +00:00
|
|
|
return std::make_unique<Screens::Label>(1, 5, app, label);
|
2020-08-14 07:46:37 +00:00
|
|
|
}
|
2020-03-22 11:03:17 +00:00
|
|
|
|
2021-04-04 02:08:51 +00:00
|
|
|
std::unique_ptr<Screen> SystemInfo::CreateScreen3() {
|
|
|
|
lv_mem_monitor_t mon;
|
2021-04-18 17:28:14 +00:00
|
|
|
lv_mem_monitor(&mon);
|
|
|
|
|
|
|
|
lv_obj_t* label = lv_label_create(lv_scr_act(), nullptr);
|
2021-04-04 02:08:51 +00:00
|
|
|
lv_label_set_recolor(label, true);
|
2020-06-08 19:51:34 +00:00
|
|
|
auto& bleAddr = bleController.Address();
|
2021-04-18 17:28:14 +00:00
|
|
|
lv_label_set_text_fmt(label,
|
|
|
|
"#444444 BLE MAC#\n"
|
|
|
|
" %02x:%02x:%02x:%02x:%02x:%02x"
|
|
|
|
"\n"
|
2021-06-01 19:03:29 +00:00
|
|
|
"#444444 LVGL Memory#\n"
|
2021-04-18 17:28:14 +00:00
|
|
|
" #444444 used# %d (%d%%)\n"
|
2021-06-24 22:07:40 +00:00
|
|
|
" #444444 max used# %lu\n"
|
2021-04-18 17:28:14 +00:00
|
|
|
" #444444 frag# %d%%\n"
|
2021-10-26 16:16:42 +00:00
|
|
|
" #444444 free# %d",
|
2021-04-18 17:28:14 +00:00
|
|
|
bleAddr[5],
|
|
|
|
bleAddr[4],
|
|
|
|
bleAddr[3],
|
|
|
|
bleAddr[2],
|
|
|
|
bleAddr[1],
|
|
|
|
bleAddr[0],
|
2021-06-24 21:40:55 +00:00
|
|
|
static_cast<int>(mon.total_size - mon.free_size),
|
2021-04-18 17:28:14 +00:00
|
|
|
mon.used_pct,
|
2021-06-01 19:03:29 +00:00
|
|
|
mon.max_used,
|
2021-04-18 17:28:14 +00:00
|
|
|
mon.frag_pct,
|
2021-10-26 16:16:42 +00:00
|
|
|
static_cast<int>(mon.free_biggest_size));
|
2021-04-11 16:20:15 +00:00
|
|
|
lv_obj_align(label, lv_scr_act(), LV_ALIGN_CENTER, 0, 0);
|
2021-06-10 19:20:27 +00:00
|
|
|
return std::make_unique<Screens::Label>(2, 5, app, label);
|
2020-03-22 11:03:17 +00:00
|
|
|
}
|
|
|
|
|
2021-06-12 09:18:19 +00:00
|
|
|
bool SystemInfo::sortById(const TaskStatus_t& lhs, const TaskStatus_t& rhs) {
|
2021-04-18 17:28:14 +00:00
|
|
|
return lhs.xTaskNumber < rhs.xTaskNumber;
|
|
|
|
}
|
2021-04-11 16:20:15 +00:00
|
|
|
|
2021-04-04 02:08:51 +00:00
|
|
|
std::unique_ptr<Screen> SystemInfo::CreateScreen4() {
|
2021-07-21 11:41:29 +00:00
|
|
|
static constexpr uint8_t maxTaskCount = 9;
|
|
|
|
TaskStatus_t tasksStatus[maxTaskCount];
|
|
|
|
|
2021-10-29 10:10:34 +00:00
|
|
|
lv_obj_t* infoTask = lv_table_create(lv_scr_act(), nullptr);
|
2021-07-09 14:35:52 +00:00
|
|
|
lv_table_set_col_cnt(infoTask, 4);
|
2021-07-21 11:41:29 +00:00
|
|
|
lv_table_set_row_cnt(infoTask, maxTaskCount + 1);
|
|
|
|
lv_obj_set_style_local_pad_all(infoTask, LV_TABLE_PART_CELL1, LV_STATE_DEFAULT, 0);
|
|
|
|
lv_obj_set_style_local_border_color(infoTask, LV_TABLE_PART_CELL1, LV_STATE_DEFAULT, LV_COLOR_GRAY);
|
2021-04-11 16:20:15 +00:00
|
|
|
|
|
|
|
lv_table_set_cell_value(infoTask, 0, 0, "#");
|
2021-07-09 14:35:52 +00:00
|
|
|
lv_table_set_col_width(infoTask, 0, 30);
|
|
|
|
lv_table_set_cell_value(infoTask, 0, 1, "S"); // State
|
|
|
|
lv_table_set_col_width(infoTask, 1, 30);
|
|
|
|
lv_table_set_cell_value(infoTask, 0, 2, "Task");
|
|
|
|
lv_table_set_col_width(infoTask, 2, 80);
|
|
|
|
lv_table_set_cell_value(infoTask, 0, 3, "Free");
|
|
|
|
lv_table_set_col_width(infoTask, 3, 90);
|
2021-04-11 16:20:15 +00:00
|
|
|
|
2021-07-21 11:41:29 +00:00
|
|
|
auto nb = uxTaskGetSystemState(tasksStatus, maxTaskCount, nullptr);
|
2021-04-11 16:20:15 +00:00
|
|
|
std::sort(tasksStatus, tasksStatus + nb, sortById);
|
2021-07-21 11:46:27 +00:00
|
|
|
for (uint8_t i = 0; i < nb && i < maxTaskCount; i++) {
|
2021-10-29 10:10:34 +00:00
|
|
|
char buffer[7] = {0};
|
2021-04-18 17:28:14 +00:00
|
|
|
|
2021-10-29 10:10:34 +00:00
|
|
|
sprintf(buffer, "%lu", tasksStatus[i].xTaskNumber);
|
|
|
|
lv_table_set_cell_value(infoTask, i + 1, 0, buffer);
|
2021-07-09 14:35:52 +00:00
|
|
|
switch (tasksStatus[i].eCurrentState) {
|
|
|
|
case eReady:
|
|
|
|
case eRunning:
|
2021-10-29 10:10:34 +00:00
|
|
|
buffer[0] = 'R';
|
2021-07-09 14:35:52 +00:00
|
|
|
break;
|
|
|
|
case eBlocked:
|
2021-10-29 10:10:34 +00:00
|
|
|
buffer[0] = 'B';
|
2021-07-09 14:35:52 +00:00
|
|
|
break;
|
|
|
|
case eSuspended:
|
2021-10-29 10:10:34 +00:00
|
|
|
buffer[0] = 'S';
|
2021-07-09 14:35:52 +00:00
|
|
|
break;
|
|
|
|
case eDeleted:
|
2021-10-29 10:10:34 +00:00
|
|
|
buffer[0] = 'D';
|
2021-07-09 14:35:52 +00:00
|
|
|
break;
|
|
|
|
default:
|
2021-10-29 10:10:34 +00:00
|
|
|
buffer[0] = 'I'; // Invalid
|
2021-07-09 14:35:52 +00:00
|
|
|
break;
|
|
|
|
}
|
2021-10-29 10:10:34 +00:00
|
|
|
buffer[1] = '\0';
|
|
|
|
lv_table_set_cell_value(infoTask, i + 1, 1, buffer);
|
2021-07-09 14:35:52 +00:00
|
|
|
lv_table_set_cell_value(infoTask, i + 1, 2, tasksStatus[i].pcTaskName);
|
2021-04-11 16:20:15 +00:00
|
|
|
if (tasksStatus[i].usStackHighWaterMark < 20) {
|
2021-10-29 10:10:34 +00:00
|
|
|
sprintf(buffer, "%d low", tasksStatus[i].usStackHighWaterMark);
|
2021-04-11 16:20:15 +00:00
|
|
|
} else {
|
2021-10-29 10:10:34 +00:00
|
|
|
sprintf(buffer, "%d", tasksStatus[i].usStackHighWaterMark);
|
2021-04-11 16:20:15 +00:00
|
|
|
}
|
2021-10-29 10:10:34 +00:00
|
|
|
lv_table_set_cell_value(infoTask, i + 1, 3, buffer);
|
2021-04-11 16:20:15 +00:00
|
|
|
}
|
2021-06-10 19:20:27 +00:00
|
|
|
return std::make_unique<Screens::Label>(3, 5, app, infoTask);
|
2021-04-11 16:20:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_ptr<Screen> SystemInfo::CreateScreen5() {
|
2021-04-18 17:28:14 +00:00
|
|
|
lv_obj_t* label = lv_label_create(lv_scr_act(), nullptr);
|
2021-04-04 02:08:51 +00:00
|
|
|
lv_label_set_recolor(label, true);
|
|
|
|
lv_label_set_text_static(label,
|
2021-04-18 17:28:14 +00:00
|
|
|
"Software Licensed\n"
|
|
|
|
"under the terms of\n"
|
|
|
|
"the GNU General\n"
|
|
|
|
"Public License v3\n"
|
|
|
|
"#444444 Source code#\n"
|
|
|
|
"#FFFF00 https://github.com/#\n"
|
2021-10-15 16:03:10 +00:00
|
|
|
"#FFFF00 InfiniTimeOrg/#\n"
|
|
|
|
"#FFFF00 InfiniTime#");
|
2021-04-04 02:08:51 +00:00
|
|
|
lv_label_set_align(label, LV_LABEL_ALIGN_CENTER);
|
2021-04-11 16:20:15 +00:00
|
|
|
lv_obj_align(label, lv_scr_act(), LV_ALIGN_CENTER, 0, 0);
|
2021-06-10 19:20:27 +00:00
|
|
|
return std::make_unique<Screens::Label>(4, 5, app, label);
|
2021-06-24 21:43:30 +00:00
|
|
|
}
|