/* * Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc. * * 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_debug.hpp" #include "ch.h" #include "radio.hpp" #include "string_format.hpp" #include "audio.hpp" #include "ui_sd_card_debug.hpp" namespace ui { /* DebugMemoryView *******************************************************/ DebugMemoryView::DebugMemoryView(NavigationView& nav) { add_children({ { &text_title, &text_label_m0_core_free, &text_label_m0_core_free_value, &text_label_m0_heap_fragmented_free, &text_label_m0_heap_fragmented_free_value, &text_label_m0_heap_fragments, &text_label_m0_heap_fragments_value, &button_done } }); const auto m0_core_free = chCoreStatus(); text_label_m0_core_free_value.set(to_string_dec_uint(m0_core_free, 5)); size_t m0_fragmented_free_space = 0; const auto m0_fragments = chHeapStatus(NULL, &m0_fragmented_free_space); text_label_m0_heap_fragmented_free_value.set(to_string_dec_uint(m0_fragmented_free_space, 5)); text_label_m0_heap_fragments_value.set(to_string_dec_uint(m0_fragments, 5)); button_done.on_select = [&nav](Button&){ nav.pop(); }; } void DebugMemoryView::focus() { button_done.focus(); } /* TemperatureWidget *****************************************************/ void TemperatureWidget::paint(Painter& painter) { const auto logger = portapack::temperature_logger; const auto rect = screen_rect(); const Color color_background { 0, 0, 64 }; const Color color_foreground = Color::green(); const Color color_reticle { 128, 128, 128 }; const auto graph_width = static_cast(logger.capacity()) * bar_width; const Rect graph_rect { rect.left() + (rect.width() - graph_width) / 2, rect.top() + 8, graph_width, rect.height() }; const Rect frame_rect { graph_rect.left() - 1, graph_rect.top() - 1, graph_rect.width() + 2, graph_rect.height() + 2 }; painter.draw_rectangle(frame_rect, color_reticle); painter.fill_rectangle(graph_rect, color_background); const auto history = logger.history(); for(size_t i=0; i&& reader ) : Widget { }, config(std::move(config)), reader(std::move(reader)) { } void RegistersWidget::update() { set_dirty(); } void RegistersWidget::paint(Painter& painter) { const Coord left = (size().w - config.row_width()) / 2; draw_legend(left, painter); draw_values(left, painter); } void RegistersWidget::draw_legend(const Coord left, Painter& painter) { const auto pos = screen_pos(); for(int i=0; i&& reader ) : registers_widget { std::move(config), std::move(reader) } { add_children({ { &text_title, ®isters_widget, &button_update, &button_done, } }); button_update.on_select = [this](Button&){ this->registers_widget.update(); }; button_done.on_select = [&nav](Button&){ nav.pop(); }; registers_widget.set_parent_rect({ 0, 48, 240, 192 }); text_title.set_parent_rect({ (240 - static_cast(title.size()) * 8) / 2, 16, static_cast(title.size()) * 8, 16 }); text_title.set(title); } void RegistersView::focus() { button_done.focus(); } /* DebugPeripheralsMenuView **********************************************/ DebugPeripheralsMenuView::DebugPeripheralsMenuView(NavigationView& nav) { add_items<4>({ { { "RFFC5072", ui::Color::white(), [&nav](){ nav.push( "RFFC5072", RegistersWidgetConfig { 31, 2, 4, 4 }, [](const size_t register_number) { return radio::debug::first_if::register_read(register_number); } ); } }, { "MAX2837", ui::Color::white(), [&nav](){ nav.push( "MAX2837", RegistersWidgetConfig { 32, 2, 3, 4 }, [](const size_t register_number) { return radio::debug::second_if::register_read(register_number); } ); } }, { "Si5351C", ui::Color::white(), [&nav](){ nav.push( "Si5351C", RegistersWidgetConfig { 96, 2, 2, 8 }, [](const size_t register_number) { return portapack::clock_generator.read_register(register_number); } ); } }, { "WM8731",ui::Color::white(), [&nav](){ nav.push( "WM8731", RegistersWidgetConfig { audio::debug::reg_count(), 1, 3, 4 }, [](const size_t register_number) { return audio::debug::reg_read(register_number); } ); } }, } }); on_left = [&nav](){ nav.pop(); }; } /* DebugMenuView *********************************************************/ DebugMenuView::DebugMenuView(NavigationView& nav) { add_items<5>({ { { "Memory", ui::Color::white(), [&nav](){ nav.push(); } }, { "Radio State", ui::Color::white(), [&nav](){ nav.push(); } }, { "SD Card", ui::Color::white(), [&nav](){ nav.push(); } }, { "Peripherals", ui::Color::white(), [&nav](){ nav.push(); } }, { "Temperature", ui::Color::white(), [&nav](){ nav.push(); } }, } }); on_left = [&nav](){ nav.pop(); }; } char hexify(char in) { if (in > 9) in += 7; return in + 0x30; } DebugLCRView::DebugLCRView(NavigationView& nav, char * lcrstring, uint8_t checksum) { char cstr[15] = "Checksum: 0x "; add_children({ { &text_lcr1, &text_lcr2, &text_lcr3, &text_lcr4, &text_lcr5, &text_checksum, &button_done } }); std::string b = std::string(lcrstring); text_lcr1.set(b.substr(8+(0*26),26)); if (strlen(lcrstring) > 34) text_lcr2.set(b.substr(8+(1*26),26)); if (strlen(lcrstring) > 34+26) text_lcr3.set(b.substr(8+(2*26),26)); if (strlen(lcrstring) > 34+26+26) text_lcr4.set(b.substr(8+(3*26),26)); if (strlen(lcrstring) > 34+26+26+26) text_lcr5.set(b.substr(8+(4*26),26)); cstr[12] = hexify(checksum >> 4); cstr[13] = hexify(checksum & 15); text_checksum.set(cstr); button_done.on_select = [&nav](Button&){ nav.pop(); }; } void DebugLCRView::focus() { button_done.focus(); } } /* namespace ui */