From 2874e6391be42b3a72a5c969626c37441739bcea Mon Sep 17 00:00:00 2001 From: c vw Date: Sun, 2 May 2021 12:33:51 +0200 Subject: [PATCH] Use "peak" FWD value also in small TX window used in duplex --- tx_panadapter.c | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/tx_panadapter.c b/tx_panadapter.c index 8d1d9cb..59d9eed 100644 --- a/tx_panadapter.c +++ b/tx_panadapter.c @@ -243,7 +243,7 @@ void tx_panadapter_update(TRANSMITTER *tx) { } // plot frequency markers - long long half= duplex ? 3000LL : 12000LL; //(long long)(tx->output_rate/2); + long long half= tx->dialog ? 3000LL : 12000LL; //(long long)(tx->output_rate/2); long long frequency; if(vfo[txvfo].ctun) { frequency=vfo[txvfo].ctun_frequency; @@ -353,7 +353,7 @@ void tx_panadapter_update(TRANSMITTER *tx) { cairo_stroke(cr); #ifdef GPIO - if(controller==CONTROLLER1 && !duplex) { + if(controller==CONTROLLER1 && tx->dialog == NULL) { char text[64]; cairo_set_source_rgb(cr,1.0,1.0,0.0); @@ -398,7 +398,7 @@ void tx_panadapter_update(TRANSMITTER *tx) { } #endif - if(duplex) { + if(tx->dialog) { char text[64]; cairo_set_source_rgb(cr,1.0,0.2,0.0); cairo_set_font_size(cr, DISPLAY_FONT_SIZE3); @@ -406,7 +406,14 @@ void tx_panadapter_update(TRANSMITTER *tx) { if(transmitter->fwd<0.0001) { sprintf(text,"FWD %0.3f W",transmitter->exciter); } else { - sprintf(text,"FWD %0.1f W",transmitter->fwd); + static int max_count=0; + static double max_level=0.0; + if(transmitter->fwd > max_level || max_count==10) { + max_level=transmitter->fwd; + max_count=0; + } + max_count++; + sprintf(text,"FWD %0.1f W",max_level); } cairo_move_to(cr,10,15); cairo_show_text(cr, text); -- 2.45.2