Merge pull request #925 from gullradriel/level-mem-workaround

Automatically reduce rssi graph history
This commit is contained in:
gullradriel 2023-04-27 15:42:06 +02:00 committed by GitHub
commit 7a89858cc6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 0 deletions

View File

@ -434,6 +434,23 @@ namespace ui {
void RSSIGraph::set_nb_columns( int16_t nb ) void RSSIGraph::set_nb_columns( int16_t nb )
{ {
nb_columns = nb ; nb_columns = nb ;
while( graph_list.size() > nb_columns )
{
graph_list.erase( graph_list.begin() );
}
}
void RSSIGraph::on_hide() {
nb_columns_before_hide = nb_columns ;
nb_columns = 1 ;
while( graph_list.size() > nb_columns )
{
graph_list.erase( graph_list.begin() );
}
}
void RSSIGraph::on_show() {
nb_columns = nb_columns_before_hide ;
} }
void RSSI::on_focus() { void RSSI::on_focus() {

View File

@ -115,8 +115,12 @@ namespace ui {
void paint(Painter& painter) override; void paint(Painter& painter) override;
void add_values(int16_t rssi_min, int16_t rssi_avg, int16_t rssi_max, int16_t db ); void add_values(int16_t rssi_min, int16_t rssi_avg, int16_t rssi_max, int16_t db );
void set_nb_columns( int16_t nb ); void set_nb_columns( int16_t nb );
void on_hide() override ;
void on_show() override ;
private: private:
uint16_t nb_columns_before_hide = 16 ;
uint16_t nb_columns = 16 ; uint16_t nb_columns = 16 ;
RSSIGraphList graph_list { } ; RSSIGraphList graph_list { } ;
}; };