Merge remote-tracking branch 'origin/next' into error_handling

This commit is contained in:
Bernd Herzog 2023-03-18 16:39:56 +01:00
commit caba16a549
8 changed files with 212 additions and 98 deletions

View File

@ -215,7 +215,7 @@ namespace ui {
last_min_rssi = rssi.get_min(); last_min_rssi = rssi.get_min();
last_avg_rssi = rssi.get_avg(); last_avg_rssi = rssi.get_avg();
last_max_rssi = rssi.get_max(); last_max_rssi = rssi.get_max();
freq_stats_rssi.set( "RSSI: "+to_string_dec_int( rssi.get_min() )+"/"+to_string_dec_int( rssi.get_avg() )+"/"+to_string_dec_int( rssi.get_max() )+" db" ); freq_stats_rssi.set( "RSSI: "+to_string_dec_int( rssi.get_min() )+"/"+to_string_dec_int( rssi.get_avg() )+"/"+to_string_dec_int( rssi.get_max() )+" db, dt: "+to_string_dec_int( rssi.get_delta() )+" db" );
} }
} /* on_statistic_updates */ } /* on_statistic_updates */

View File

@ -50,8 +50,6 @@ namespace ui {
void big_display_freq( int64_t f ); void big_display_freq( int64_t f );
void on_audio_spectrum(const AudioSpectrum* spectrum);
const Style style_grey { // level const Style style_grey { // level
.font = font::fixed_8x16, .font = font::fixed_8x16,
.background = Color::black(), .background = Color::black(),
@ -143,18 +141,18 @@ namespace ui {
}; };
OptionsField step_mode { OptionsField step_mode {
{ 21 * 8, 1 * 16 }, { 16 * 8, 2 * 16 + 4 },
12, 12,
{ {
} }
}; };
RSSIGraph rssi_graph { // 240x320 => RSSIGraph rssi_graph { // 240x320 =>
{ 0 , 5 * 16 + 4 , 240 - 5 * 8 , 320 - 5 * 16 - 4 }, { 0 , 5 * 16 + 4 , 240 - 5 * 8 , 216 },
}; };
RSSI rssi { // 240x320 => RSSI rssi { // 240x320 =>
{ 240 - 5 * 8 , 5 * 16 + 4 , 5 * 8 , 320 - 5 * 16 - 4 }, { 240 - 5 * 8 , 5 * 16 + 4 , 5 * 8 , 216 },
}; };
@ -164,7 +162,7 @@ namespace ui {
}; };
OptionsField audio_mode { OptionsField audio_mode {
{ 16 * 8, 2 * 16 + 4 }, { 21 * 8, 1 * 16 },
9, 9,
{ {
{"audio off", 0}, {"audio off", 0},

View File

@ -20,6 +20,9 @@
* Boston, MA 02110-1301, USA. * Boston, MA 02110-1301, USA.
*/ */
#ifndef _UI_GLASS
#define _UI_GLASS
#include "ui.hpp" #include "ui.hpp"
#include "portapack.hpp" #include "portapack.hpp"
#include "baseband_api.hpp" #include "baseband_api.hpp"
@ -184,4 +187,4 @@
}; };
} }
#endif

View File

@ -524,15 +524,21 @@ namespace ui {
if(frequency_list[index].description.size() > 0) desc_cycle.set( frequency_list[index].description ); //Show new description if(frequency_list[index].description.size() > 0) desc_cycle.set( frequency_list[index].description ); //Show new description
} }
big_display.set_style(&style_white); big_display.set_style(&style_white);
if( !userpause )
button_pause.set_text("<PAUSE>");
else
button_pause.set_text("<RESUME>");
} }
else if( freq_lock == 1 && recon_lock_nb_match != 1 ) else if( freq_lock == 1 && recon_lock_nb_match != 1 )
{ {
//STARTING LOCK FREQ //STARTING LOCK FREQ
big_display.set_style(&style_yellow); big_display.set_style(&style_yellow);
button_pause.set_text("<SKPLCK>");
} }
else if( index < 1000 && freq_lock >= recon_thread -> get_lock_nb_match() ) else if( index < 1000 && freq_lock >= recon_thread -> get_lock_nb_match() )
{ {
big_display.set_style( &style_green); big_display.set_style( &style_green);
button_pause.set_text("<UNLOCK>");
//FREQ IS STRONG: GREEN and recon will pause when on_statistics_update() //FREQ IS STRONG: GREEN and recon will pause when on_statistics_update()
if( (!scanner_mode) && autosave && last_freq != freq ) { if( (!scanner_mode) && autosave && last_freq != freq ) {
@ -660,6 +666,7 @@ namespace ui {
&field_lock_wait, &field_lock_wait,
&button_recon_setup, &button_recon_setup,
&button_scanner_mode, &button_scanner_mode,
&button_looking_glass,
&file_name, &file_name,
&rssi, &rssi,
&text_cycle, &text_cycle,
@ -875,6 +882,20 @@ namespace ui {
nav_.push<AnalogAudioView>(); nav_.push<AnalogAudioView>();
}; };
button_looking_glass.on_select = [this](Button&) {
recon_thread->stop();
nav_.pop();
nav_.push<GlassView>();
};
rssi.set_focusable(true);
rssi.on_select = [this](RSSI&) {
recon_thread->stop();
nav_.pop();
nav_.push<LevelView>();
};
button_mic_app.on_select = [this](Button&) { button_mic_app.on_select = [this](Button&) {
recon_thread->stop(); recon_thread->stop();
nav_.pop(); nav_.pop();
@ -1091,7 +1112,7 @@ namespace ui {
show_max(); /* display step information */ show_max(); /* display step information */
text_cycle.set( "MANUAL SEARCH" ); text_cycle.set( "MANUAL SEARCH" );
button_scanner_mode.set_style( &style_white ); button_scanner_mode.set_style( &style_white );
button_scanner_mode.set_text( "M-SEARCH" ); button_scanner_mode.set_text( "MSEARCH" );
file_name.set_style( &style_white ); file_name.set_style( &style_white );
file_name.set( "USE: MANUAL RANGE" ); file_name.set( "USE: MANUAL RANGE" );
@ -1653,7 +1674,7 @@ namespace ui {
void ReconView::user_pause() { void ReconView::user_pause() {
timer = 0 ; // Will trigger a recon_resume() on_statistics_update, also advancing to next freq. timer = 0 ; // Will trigger a recon_resume() on_statistics_update, also advancing to next freq.
button_pause.set_text("<RESUME>"); //PAUSED, show resume //button_pause.set_text("<RESUME>"); //PAUSED, show resume
userpause=true; userpause=true;
continuous_lock=false; continuous_lock=false;
recon_pause(); recon_pause();
@ -1661,7 +1682,7 @@ namespace ui {
void ReconView::user_resume() { void ReconView::user_resume() {
timer = 0 ; // Will trigger a recon_resume() on_statistics_update, also advancing to next freq. timer = 0 ; // Will trigger a recon_resume() on_statistics_update, also advancing to next freq.
button_pause.set_text("<PAUSE>"); //Show button for pause //button_pause.set_text("<PAUSE>"); //Show button for pause
userpause=false; // Resume recon userpause=false; // Resume recon
continuous_lock=false; continuous_lock=false;
recon_resume(); recon_resume();

View File

@ -31,6 +31,8 @@
#include "analog_audio_app.hpp" #include "analog_audio_app.hpp"
#include "audio.hpp" #include "audio.hpp"
#include "ui_mictx.hpp" #include "ui_mictx.hpp"
#include "ui_level.hpp"
#include "ui_looking_glass_app.hpp"
#include "portapack_persistent_memory.hpp" #include "portapack_persistent_memory.hpp"
#include "baseband_api.hpp" #include "baseband_api.hpp"
#include "string_format.hpp" #include "string_format.hpp"
@ -264,7 +266,7 @@ namespace ui {
}; };
RSSI rssi { RSSI rssi {
{ 0 * 16, 2 * 16, 15 * 16, 8 }, { 0 * 16, 2 * 16, 240 - 4 * 8 , 16 },
}; };
Text text_cycle { Text text_cycle {
@ -276,7 +278,7 @@ namespace ui {
}; };
Text desc_cycle { Text desc_cycle {
{0, 4 * 16, 240, 16 }, {0, 4 * 16, 240 , 16 },
}; };
/* BigFrequency big_display { //Show frequency in glamour /* BigFrequency big_display { //Show frequency in glamour
@ -285,32 +287,36 @@ namespace ui {
}; */ }; */
Text big_display { //Show frequency in text mode Text big_display { //Show frequency in text mode
{ 0, 5 * 16 , 28 * 8, 16 }, { 0, 5 * 16 , 21 * 8, 16 },
}; };
Text freq_stats { //Show frequency stats in text mode Text freq_stats { //Show frequency stats in text mode
{ 0, 6 * 16 , 28 * 8, 16 }, { 0, 6 * 16 , 21 * 8, 16 },
}; };
Text text_timer { //Show frequency stats in text mode Text text_timer { //Show frequency stats in text mode
{ 0, 7 * 16 , 28 * 8, 16 }, { 0, 7 * 16 , 21 * 8, 16 },
}; };
Button button_recon_setup { Button button_recon_setup {
{ 25 * 8 , 2 * 16 + 8 , 4 * 8, 28 }, { 240 - 4 * 8 , 2 * 16 , 4 * 8, 28 },
"OPT" "OPT"
}; };
Button button_looking_glass {
{ 240 - 5 * 8 , 6 * 16 - 4 , 5 * 8, 28 },
"GLASS"
};
Button button_scanner_mode { Button button_scanner_mode {
{ 21 * 8 , 8 * 16 , 9 * 8, 28 }, { 240 - 8 * 8 , 8 * 16 , 8 * 8, 28 },
"RECON" "RECON"
}; };
Text file_name { //Show file used Text file_name { //Show file used
{ 0 , 8 * 16 + 4 , 20 * 8, 16 }, { 0 , 8 * 16 + 6 , 21 * 8, 16 },
}; };
ButtonWithEncoder button_manual_start { ButtonWithEncoder button_manual_start {
{ 0 * 8, 11 * 16, 11 * 8, 28 }, { 0 * 8, 11 * 16, 11 * 8, 28 },
"" ""

View File

@ -51,6 +51,8 @@ options_t freqman_entry_bandwidths[ 4 ] = {
}; };
options_t freqman_entry_steps = { options_t freqman_entry_steps = {
{ "0.1KHz " , 100 },
{ "1KHz " , 1000 },
{ "5KHz (SA AM)" , 5000 }, { "5KHz (SA AM)" , 5000 },
{ "6.25KHz(NFM)" , 6250 }, { "6.25KHz(NFM)" , 6250 },
{ "8.33KHz(AIR)" , 8330 }, { "8.33KHz(AIR)" , 8330 },
@ -68,6 +70,8 @@ options_t freqman_entry_steps = {
}; };
options_t freqman_entry_steps_short = { options_t freqman_entry_steps_short = {
{ "0.1KHz" , 100 },
{ "1KHz" , 1000 },
{ "5KHz" , 5000 }, { "5KHz" , 5000 },
{ "6.25KHz" , 6250 }, { "6.25KHz" , 6250 },
{ "8.33KHz" , 8330 }, { "8.33KHz" , 8330 },

View File

@ -32,14 +32,23 @@
namespace ui { namespace ui {
RSSI::RSSI(
Rect parent_rect,
bool instant_exec
) : Widget { parent_rect },
instant_exec_ { instant_exec }
{
}
void RSSI::paint(Painter& painter) { void RSSI::paint(Painter& painter) {
const auto r = screen_rect(); const auto r = screen_rect();
constexpr int rssi_sample_range = 256; constexpr int rssi_sample_range = 256;
constexpr float rssi_voltage_min = 0.4; //constexpr float rssi_voltage_min = 0.4;
constexpr float rssi_voltage_max = 2.2; constexpr float rssi_voltage_max = 2.2;
constexpr float adc_voltage_max = 3.3; constexpr float adc_voltage_max = 3.3;
constexpr int raw_min = rssi_sample_range * rssi_voltage_min / adc_voltage_max; //constexpr int raw_min = rssi_sample_range * rssi_voltage_min / adc_voltage_max;
constexpr int raw_min = 0 ;
constexpr int raw_max = rssi_sample_range * rssi_voltage_max / adc_voltage_max; constexpr int raw_max = rssi_sample_range * rssi_voltage_max / adc_voltage_max;
constexpr int raw_delta = raw_max - raw_min; constexpr int raw_delta = raw_max - raw_min;
@ -161,6 +170,14 @@ namespace ui {
if (pitch_rssi_enabled) { if (pitch_rssi_enabled) {
baseband::set_pitch_rssi((avg_ - raw_min) * 2000 / raw_delta, true); baseband::set_pitch_rssi((avg_ - raw_min) * 2000 / raw_delta, true);
} }
if( has_focus() || highlighted() )
{
const Rect r6 { r.left(), r.top(), r.width(), r.height() };
painter.draw_rectangle(
r6,
Color::white()
);
}
} }
int32_t RSSI::get_min() int32_t RSSI::get_min()
@ -178,6 +195,12 @@ namespace ui {
return max_ ; return max_ ;
} }
int32_t RSSI::get_delta()
{
return max_ - min_ ;
}
void RSSI::set_pitch_rssi(bool enabled) { void RSSI::set_pitch_rssi(bool enabled) {
pitch_rssi_enabled = enabled; pitch_rssi_enabled = enabled;
if (!enabled) baseband::set_pitch_rssi(0, false); if (!enabled) baseband::set_pitch_rssi(0, false);
@ -272,7 +295,7 @@ namespace ui {
painter.draw_vline( painter.draw_vline(
p4, p4,
width_y, width_y,
Color::green()); Color::green() );
} }
} }
@ -281,10 +304,11 @@ namespace ui {
const auto r = screen_rect(); const auto r = screen_rect();
constexpr int rssi_sample_range = 256; constexpr int rssi_sample_range = 256;
constexpr float rssi_voltage_min = 0.4; //constexpr float rssi_voltage_min = 0.4;
constexpr float rssi_voltage_max = 2.2; constexpr float rssi_voltage_max = 2.2;
constexpr float adc_voltage_max = 3.3; constexpr float adc_voltage_max = 3.3;
constexpr int raw_min = rssi_sample_range * rssi_voltage_min / adc_voltage_max; //constexpr int raw_min = rssi_sample_range * rssi_voltage_min / adc_voltage_max;
constexpr int raw_min = 0 ;
constexpr int raw_max = rssi_sample_range * rssi_voltage_max / adc_voltage_max; constexpr int raw_max = rssi_sample_range * rssi_voltage_max / adc_voltage_max;
constexpr int raw_delta = raw_max - raw_min; constexpr int raw_delta = raw_max - raw_min;
@ -308,4 +332,50 @@ namespace ui {
} }
set_dirty(); set_dirty();
} }
void RSSI::on_focus() {
if( on_highlight )
on_highlight(*this);
}
bool RSSI::on_key(const KeyEvent key) {
if( key == KeyEvent::Select ) {
if( on_select ) {
on_select(*this);
return true;
}
} else {
if( on_dir ) {
return on_dir(*this, key);
}
}
return false;
}
bool RSSI::on_touch(const TouchEvent event) {
switch(event.type) {
case TouchEvent::Type::Start:
set_highlighted(true);
set_dirty();
if( on_touch_press) {
on_touch_press(*this);
}
if( on_select && instant_exec_ ) {
on_select(*this);
}
return true;
case TouchEvent::Type::End:
set_highlighted(false);
set_dirty();
if( on_touch_release) {
on_touch_release(*this);
}
if( on_select && !instant_exec_ ) {
on_select(*this);
}
return true;
default:
return false;
}
}
} /* namespace ui */ } /* namespace ui */

View File

@ -25,87 +25,99 @@
#include "ui.hpp" #include "ui.hpp"
#include "ui_widget.hpp" #include "ui_widget.hpp"
#include "ui_painter.hpp" #include "ui_painter.hpp"
#include "event_m0.hpp" #include "event_m0.hpp"
#include "message.hpp" #include "message.hpp"
#include <cstdint> #include <cstdint>
namespace ui { namespace ui {
class RSSI : public Widget { class RSSI : public Widget {
public: public:
RSSI( std::function<void(RSSI&)> on_select { };
const Rect parent_rect std::function<void(RSSI&)> on_touch_release { }; // Executed when releasing touch, after on_select.
) : Widget { parent_rect }, std::function<void(RSSI&)> on_touch_press { }; // Executed when touching, before on_select.
min_ { 0 }, std::function<bool(RSSI&, KeyEvent)> on_dir { };
avg_ { 0 }, std::function<void(RSSI&)> on_highlight { };
max_ { 0 }
{
}
void paint(Painter& painter) override; RSSI(Rect parent_rect, bool instant_exec); // instant_exec: Execute on_select when you touching instead of releasing
int32_t get_min(); RSSI(
int32_t get_avg(); Rect parent_rect
int32_t get_max(); ) : RSSI { parent_rect, false }
void set_vertical_rssi(bool enabled); {
void set_peak(bool enabled, size_t duration); }
private: RSSI(
int32_t min_; ) : RSSI { { }, { } }
int32_t avg_; {
int32_t max_; }
int32_t peak_ = 0 ;
size_t peak_duration_ = 0 ;
bool pitch_rssi_enabled = false; int32_t get_min();
bool vertical_rssi_enabled = false; // scale [vertically/from bottom to top] int32_t get_avg();
// instead of [horizontally/from left to right] int32_t get_max();
bool peak_enabled = false; int32_t get_delta();
size_t peak_duration = 1000; // peak duration in msec before being reset to actual max_rssi void set_vertical_rssi(bool enabled);
void set_peak(bool enabled, size_t duration);
MessageHandlerRegistration message_handler_stats { void paint(Painter& painter) override;
Message::ID::RSSIStatistics, void on_focus() override;
[this](const Message* const p) { bool on_key(const KeyEvent key) override;
this->on_statistics_update(static_cast<const RSSIStatisticsMessage*>(p)->statistics); bool on_touch(const TouchEvent event) override;
}
};
MessageHandlerRegistration message_handler_pitch_rssi { private:
Message::ID::PitchRSSIConfigure, int32_t min_ = 0;
[this](const Message* const p) { int32_t avg_ = 0;
const auto message = *reinterpret_cast<const PitchRSSIConfigureMessage*>(p); int32_t max_ = 0;
this->set_pitch_rssi(message.enabled); int32_t peak_ = 0 ;
} size_t peak_duration_ = 0 ;
}; bool instant_exec_ { false };
void on_statistics_update(const RSSIStatistics& statistics); bool pitch_rssi_enabled = false;
void set_pitch_rssi(bool enabled); bool vertical_rssi_enabled = false; // scale [vertically/from bottom to top]
}; // instead of [horizontally/from left to right]
bool peak_enabled = false;
size_t peak_duration = 1000; // peak duration in msec before being reset to actual max_rssi
struct RSSIGraph_entry { MessageHandlerRegistration message_handler_stats {
int32_t rssi_min { 0 }; Message::ID::RSSIStatistics,
int32_t rssi_avg { 0 }; [this](const Message* const p) {
int32_t rssi_max { 0 }; this->on_statistics_update(static_cast<const RSSIStatisticsMessage*>(p)->statistics);
int32_t db { 0 }; }
}; };
using RSSIGraphList = std::vector<RSSIGraph_entry>; MessageHandlerRegistration message_handler_pitch_rssi {
Message::ID::PitchRSSIConfigure,
[this](const Message* const p) {
const auto message = *reinterpret_cast<const PitchRSSIConfigureMessage*>(p);
this->set_pitch_rssi(message.enabled);
}
};
class RSSIGraph : public Widget { void on_statistics_update(const RSSIStatistics& statistics);
public: void set_pitch_rssi(bool enabled);
RSSIGraph( };
const Rect parent_rect
) : Widget { parent_rect }
{
}
void paint(Painter& painter) override;
void add_values(int32_t rssi_min, int32_t rssi_avg, int32_t rssi_max, int32_t db );
private: struct RSSIGraph_entry {
RSSIGraphList graph_list { } ; int32_t rssi_min { 0 };
}; int32_t rssi_avg { 0 };
int32_t rssi_max { 0 };
int32_t db { 0 };
};
using RSSIGraphList = std::vector<RSSIGraph_entry>;
class RSSIGraph : public Widget {
public:
RSSIGraph(
const Rect parent_rect
) : Widget { parent_rect }
{
}
void paint(Painter& painter) override;
void add_values(int32_t rssi_min, int32_t rssi_avg, int32_t rssi_max, int32_t db );
private:
RSSIGraphList graph_list { } ;
};
} }