2015-07-08 11:39:24 -04:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __UI_DEBUG_H__
|
|
|
|
#define __UI_DEBUG_H__
|
|
|
|
|
|
|
|
#include "ui.hpp"
|
|
|
|
#include "ui_widget.hpp"
|
|
|
|
#include "ui_painter.hpp"
|
|
|
|
#include "ui_menu.hpp"
|
|
|
|
#include "ui_navigation.hpp"
|
|
|
|
|
|
|
|
#include "rffc507x.hpp"
|
2016-01-31 03:34:24 -05:00
|
|
|
#include "max2837.hpp"
|
|
|
|
#include "portapack.hpp"
|
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
#include <utility>
|
2015-07-08 11:39:24 -04:00
|
|
|
|
|
|
|
namespace ui {
|
|
|
|
|
|
|
|
class DebugMemoryView : public View {
|
|
|
|
public:
|
|
|
|
DebugMemoryView(NavigationView& nav);
|
|
|
|
|
|
|
|
void focus() override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
Text text_title {
|
|
|
|
{ 96, 96, 48, 16 },
|
|
|
|
"Memory",
|
|
|
|
};
|
|
|
|
|
2016-02-12 16:51:14 -05:00
|
|
|
Text text_label_m0_core_free {
|
|
|
|
{ 0, 128, 144, 16 },
|
|
|
|
"M0 Core Free Bytes",
|
2015-07-08 11:39:24 -04:00
|
|
|
};
|
|
|
|
|
2016-02-12 16:51:14 -05:00
|
|
|
Text text_label_m0_core_free_value {
|
2015-07-08 11:39:24 -04:00
|
|
|
{ 200, 128, 40, 16 },
|
|
|
|
};
|
|
|
|
|
|
|
|
Text text_label_m0_heap_fragmented_free {
|
|
|
|
{ 0, 144, 184, 16 },
|
|
|
|
"M0 Heap Fragmented Free",
|
|
|
|
};
|
|
|
|
|
|
|
|
Text text_label_m0_heap_fragmented_free_value {
|
|
|
|
{ 200, 144, 40, 16 },
|
|
|
|
};
|
|
|
|
|
|
|
|
Text text_label_m0_heap_fragments {
|
|
|
|
{ 0, 160, 136, 16 },
|
|
|
|
"M0 Heap Fragments",
|
|
|
|
};
|
|
|
|
|
|
|
|
Text text_label_m0_heap_fragments_value {
|
|
|
|
{ 200, 160, 40, 16 },
|
|
|
|
};
|
|
|
|
|
|
|
|
Button button_done {
|
|
|
|
{ 72, 192, 96, 24 },
|
|
|
|
"Done"
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-01-31 03:34:24 -05:00
|
|
|
class TemperatureWidget : public Widget {
|
2015-07-08 11:39:24 -04:00
|
|
|
public:
|
2016-05-09 15:05:11 -04:00
|
|
|
explicit TemperatureWidget(
|
2015-07-08 11:39:24 -04:00
|
|
|
Rect parent_rect
|
|
|
|
) : Widget { parent_rect }
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void paint(Painter& painter) override;
|
|
|
|
|
|
|
|
private:
|
2016-01-31 03:34:24 -05:00
|
|
|
using sample_t = uint32_t;
|
|
|
|
using temperature_t = int32_t;
|
2015-07-08 11:39:24 -04:00
|
|
|
|
2016-01-31 03:34:24 -05:00
|
|
|
temperature_t temperature(const sample_t sensor_value) const;
|
|
|
|
Coord screen_y(const temperature_t temperature, const Rect& screen_rect) const;
|
2015-07-08 11:39:24 -04:00
|
|
|
|
2016-01-31 03:34:24 -05:00
|
|
|
std::string temperature_str(const temperature_t temperature) const;
|
2015-07-08 11:39:24 -04:00
|
|
|
|
2016-01-31 03:34:24 -05:00
|
|
|
static constexpr temperature_t display_temp_min = 0;
|
|
|
|
static constexpr temperature_t display_temp_scale = 3;
|
|
|
|
static constexpr int bar_width = 1;
|
|
|
|
static constexpr int temp_len = 3;
|
|
|
|
};
|
|
|
|
|
|
|
|
class TemperatureView : public View {
|
|
|
|
public:
|
|
|
|
explicit TemperatureView(NavigationView& nav);
|
|
|
|
|
|
|
|
void focus() override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
Text text_title {
|
|
|
|
{ 76, 16, 240, 16 },
|
|
|
|
"Temperature",
|
2015-07-08 11:39:24 -04:00
|
|
|
};
|
2016-01-31 03:34:24 -05:00
|
|
|
|
|
|
|
TemperatureWidget temperature_widget {
|
|
|
|
{ 0, 40, 240, 180 },
|
2015-07-08 11:39:24 -04:00
|
|
|
};
|
|
|
|
|
2016-01-31 03:34:24 -05:00
|
|
|
Button button_done {
|
|
|
|
{ 72, 264, 96, 24 },
|
|
|
|
"Done"
|
2015-07-08 11:39:24 -04:00
|
|
|
};
|
2016-01-31 03:34:24 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
struct RegistersWidgetConfig {
|
|
|
|
int registers_count;
|
|
|
|
int legend_length;
|
|
|
|
int value_length;
|
|
|
|
int registers_per_row;
|
|
|
|
|
|
|
|
constexpr int legend_width() const {
|
|
|
|
return legend_length * 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
constexpr int value_width() const {
|
|
|
|
return value_length * 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
constexpr int registers_row_length() const {
|
|
|
|
return (registers_per_row * (value_length + 1)) - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
constexpr int registers_row_width() const {
|
|
|
|
return registers_row_length() * 8;
|
|
|
|
}
|
2015-07-08 11:39:24 -04:00
|
|
|
|
2016-01-31 03:34:24 -05:00
|
|
|
constexpr int row_width() const {
|
|
|
|
return legend_width() + 8 + registers_row_width();
|
|
|
|
}
|
|
|
|
|
|
|
|
constexpr int rows() const {
|
|
|
|
return registers_count / registers_per_row;
|
|
|
|
}
|
2015-07-08 11:39:24 -04:00
|
|
|
};
|
|
|
|
|
2016-01-31 03:34:24 -05:00
|
|
|
class RegistersWidget : public Widget {
|
2015-07-08 11:39:24 -04:00
|
|
|
public:
|
2016-01-31 03:34:24 -05:00
|
|
|
RegistersWidget(
|
|
|
|
RegistersWidgetConfig&& config,
|
|
|
|
std::function<uint32_t(const size_t register_number)>&& reader
|
|
|
|
);
|
2015-07-08 11:39:24 -04:00
|
|
|
|
2016-01-31 03:34:24 -05:00
|
|
|
void update();
|
|
|
|
|
|
|
|
void paint(Painter& painter) override;
|
2015-07-08 11:39:24 -04:00
|
|
|
|
|
|
|
private:
|
2016-01-31 03:34:24 -05:00
|
|
|
const RegistersWidgetConfig config;
|
|
|
|
const std::function<uint32_t(const size_t register_number)> reader;
|
2015-07-08 11:39:24 -04:00
|
|
|
|
2016-01-31 03:34:24 -05:00
|
|
|
static constexpr int row_height = 16;
|
|
|
|
|
|
|
|
void draw_legend(const Coord left, Painter& painter);
|
|
|
|
void draw_values(const Coord left, Painter& painter);
|
|
|
|
};
|
|
|
|
|
|
|
|
class RegistersView : public View {
|
|
|
|
public:
|
|
|
|
RegistersView(
|
|
|
|
NavigationView& nav,
|
|
|
|
const std::string& title,
|
|
|
|
RegistersWidgetConfig&& config,
|
|
|
|
std::function<uint32_t(const size_t register_number)>&& reader
|
|
|
|
);
|
|
|
|
|
|
|
|
void focus();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Text text_title;
|
|
|
|
|
|
|
|
RegistersWidget registers_widget;
|
2015-07-08 11:39:24 -04:00
|
|
|
|
|
|
|
Button button_update {
|
2016-01-31 03:34:24 -05:00
|
|
|
{ 16, 256, 96, 24 },
|
2015-07-08 11:39:24 -04:00
|
|
|
"Update"
|
|
|
|
};
|
|
|
|
|
|
|
|
Button button_done {
|
2016-01-31 03:34:24 -05:00
|
|
|
{ 128, 256, 96, 24 },
|
2015-07-08 11:39:24 -04:00
|
|
|
"Done"
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-08-22 23:08:38 -04:00
|
|
|
class DebugSDView : public View {
|
|
|
|
public:
|
|
|
|
DebugSDView(NavigationView& nav);
|
|
|
|
|
|
|
|
void focus() override;
|
|
|
|
|
|
|
|
void paint(Painter& painter) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
Text text_title {
|
|
|
|
{ 32, 16, 128, 16 },
|
2015-11-20 01:59:09 -05:00
|
|
|
"SD card debug"
|
|
|
|
};
|
|
|
|
|
|
|
|
Text text_modules {
|
|
|
|
{ 8, 32, 28 * 8, 16 },
|
|
|
|
"TESTTESTTESTTESTTESTTESTTEST"
|
2015-08-22 23:08:38 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
Button button_makefile {
|
|
|
|
{ 72, 192, 96, 24 },
|
|
|
|
"Play file"
|
|
|
|
};
|
|
|
|
|
|
|
|
Button button_done {
|
|
|
|
{ 72, 240, 96, 24 },
|
|
|
|
"Done"
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-09-04 14:37:27 -04:00
|
|
|
class DebugLCRView : public View {
|
|
|
|
public:
|
2016-07-28 22:52:51 -04:00
|
|
|
DebugLCRView(NavigationView& nav, std::string lcrstring, uint8_t checksum);
|
2015-09-04 14:37:27 -04:00
|
|
|
|
|
|
|
void focus() override;
|
2016-07-28 22:52:51 -04:00
|
|
|
|
|
|
|
std::string title() const override { return "LCR debug"; };
|
2015-09-04 14:37:27 -04:00
|
|
|
|
|
|
|
private:
|
2016-07-28 22:52:51 -04:00
|
|
|
Console console {
|
|
|
|
{ 8, 16, 224, 240 }
|
2015-09-04 14:37:27 -04:00
|
|
|
};
|
|
|
|
|
2016-07-28 22:52:51 -04:00
|
|
|
Button button_exit {
|
|
|
|
{ 72, 264, 96, 32 },
|
|
|
|
"Exit"
|
2015-09-04 14:37:27 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-02-12 18:05:47 -05:00
|
|
|
class DebugPeripheralsMenuView : public MenuView {
|
|
|
|
public:
|
|
|
|
DebugPeripheralsMenuView(NavigationView& nav);
|
|
|
|
};
|
|
|
|
|
2015-07-08 11:39:24 -04:00
|
|
|
class DebugMenuView : public MenuView {
|
|
|
|
public:
|
|
|
|
DebugMenuView(NavigationView& nav);
|
|
|
|
};
|
|
|
|
|
|
|
|
} /* namespace ui */
|
|
|
|
|
|
|
|
#endif/*__UI_DEBUG_H__*/
|