2023-04-23 10:21:33 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2023 Bernd Herzog
|
|
|
|
*
|
|
|
|
* This file is part of PortaPack.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; see the file COPYING. If not, write to
|
|
|
|
* the Free Software Foundation, Inc., 51 Franklin Street,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ui_dfu_menu.hpp"
|
|
|
|
#include "portapack_shared_memory.hpp"
|
2023-04-24 07:00:34 -04:00
|
|
|
#include "performance_counter.hpp"
|
2023-04-23 10:21:33 -04:00
|
|
|
|
|
|
|
namespace ui {
|
|
|
|
|
2023-05-18 16:16:05 -04:00
|
|
|
DfuMenu::DfuMenu(NavigationView& nav)
|
|
|
|
: nav_(nav) {
|
|
|
|
add_children({&text_head,
|
|
|
|
&labels,
|
|
|
|
&text_info_line_1,
|
|
|
|
&text_info_line_2,
|
|
|
|
&text_info_line_3,
|
|
|
|
&text_info_line_4,
|
|
|
|
&text_info_line_5,
|
|
|
|
&text_info_line_6,
|
|
|
|
&text_info_line_7,
|
|
|
|
&text_info_line_8});
|
2023-04-23 10:21:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void DfuMenu::paint(Painter& painter) {
|
2023-05-18 16:16:05 -04:00
|
|
|
auto utilisation = get_cpu_utilisation_in_percent();
|
2023-04-23 13:52:38 -04:00
|
|
|
|
2023-05-18 16:16:05 -04:00
|
|
|
text_info_line_1.set(to_string_dec_uint(chCoreStatus(), 6));
|
|
|
|
text_info_line_2.set(to_string_dec_uint((uint32_t)get_free_stack_space(), 6));
|
|
|
|
text_info_line_3.set(to_string_dec_uint(utilisation, 6));
|
|
|
|
text_info_line_4.set(to_string_dec_uint(shared_memory.m4_heap_usage, 6));
|
|
|
|
text_info_line_5.set(to_string_dec_uint(shared_memory.m4_stack_usage, 6));
|
|
|
|
text_info_line_6.set(to_string_dec_uint(shared_memory.m4_cpu_usage, 6));
|
|
|
|
text_info_line_7.set(to_string_dec_uint(shared_memory.m4_buffer_missed, 6));
|
|
|
|
text_info_line_8.set(to_string_dec_uint(chTimeNow() / 1000, 6));
|
2023-04-23 13:52:38 -04:00
|
|
|
|
2023-05-18 16:16:05 -04:00
|
|
|
constexpr auto margin = 5;
|
|
|
|
constexpr auto lines = 8 + 2;
|
2023-04-23 15:48:45 -04:00
|
|
|
|
2023-05-18 16:16:05 -04:00
|
|
|
painter.fill_rectangle(
|
|
|
|
{{6 * CHARACTER_WIDTH - margin, 3 * LINE_HEIGHT - margin},
|
|
|
|
{15 * CHARACTER_WIDTH + margin * 2, lines * LINE_HEIGHT + margin * 2}},
|
|
|
|
ui::Color::black());
|
2023-04-23 15:48:45 -04:00
|
|
|
|
2023-05-18 16:16:05 -04:00
|
|
|
painter.fill_rectangle(
|
|
|
|
{{5 * CHARACTER_WIDTH - margin, 3 * LINE_HEIGHT - margin},
|
|
|
|
{CHARACTER_WIDTH, lines * LINE_HEIGHT + margin * 2}},
|
|
|
|
ui::Color::dark_cyan());
|
2023-04-23 15:48:45 -04:00
|
|
|
|
2023-05-18 16:16:05 -04:00
|
|
|
painter.fill_rectangle(
|
|
|
|
{{21 * CHARACTER_WIDTH + margin, 3 * LINE_HEIGHT - margin},
|
|
|
|
{CHARACTER_WIDTH, lines * LINE_HEIGHT + margin * 2}},
|
|
|
|
ui::Color::dark_cyan());
|
2023-04-23 15:48:45 -04:00
|
|
|
|
2023-05-18 16:16:05 -04:00
|
|
|
painter.fill_rectangle(
|
|
|
|
{{5 * CHARACTER_WIDTH - margin, 3 * LINE_HEIGHT - margin - 8},
|
|
|
|
{17 * CHARACTER_WIDTH + margin * 2, 8}},
|
|
|
|
ui::Color::dark_cyan());
|
2023-04-23 15:48:45 -04:00
|
|
|
|
2023-05-18 16:16:05 -04:00
|
|
|
painter.fill_rectangle(
|
|
|
|
{{5 * CHARACTER_WIDTH - margin, (lines + 3) * LINE_HEIGHT + margin},
|
|
|
|
{17 * CHARACTER_WIDTH + margin * 2, 8}},
|
|
|
|
ui::Color::dark_cyan());
|
2023-04-23 10:21:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
} /* namespace ui */
|