From be4ce928f402cb03ea4b4d28572c947e9a917292 Mon Sep 17 00:00:00 2001 From: c vw Date: Tue, 16 Nov 2021 12:05:14 +0100 Subject: [PATCH] Do not show power/swr on SOAPY, since these values are not present there. --- meter.c | 37 +++++++++++++++++++++---------------- tx_panadapter.c | 46 ++++++++++++++++++++++++++++------------------ 2 files changed, 49 insertions(+), 34 deletions(-) diff --git a/meter.c b/meter.c index 3040de2..7704677 100644 --- a/meter.c +++ b/meter.c @@ -674,30 +674,35 @@ if(analog_meter) { CAIRO_FONT_WEIGHT_BOLD); cairo_set_font_size(cr, DISPLAY_FONT_SIZE2); - if(level>max_level || max_count==10) { + if (protocol == ORIGINAL_PROTOCOL || protocol == NEW_PROTOCOL) { + // + // Power levels not available for Soapy + // + if(level>max_level || max_count==10) { max_level=level; max_count=0; - } - max_count++; + } + max_count++; - sprintf(sf,"FWD: %d%s",(int)max_level,units); - cairo_move_to(cr, 10, 35); - cairo_show_text(cr, sf); + sprintf(sf,"FWD: %d%s",(int)max_level,units); + cairo_move_to(cr, 10, 35); + cairo_show_text(cr, sf); - if (swr > transmitter->swr_alarm) { - cairo_set_source_rgb(cr, 1.0, 0.2, 0.0); // display SWR in red color - } else { - cairo_set_source_rgb (cr, 1.0, 1.0, 1.0); // display SWR in white color - } + if (swr > transmitter->swr_alarm) { + cairo_set_source_rgb(cr, 1.0, 0.2, 0.0); // display SWR in red color + } else { + cairo_set_source_rgb (cr, 1.0, 1.0, 1.0); // display SWR in white color + } - cairo_select_font_face(cr, DISPLAY_FONT, + cairo_select_font_face(cr, DISPLAY_FONT, CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_BOLD); - cairo_set_font_size(cr, DISPLAY_FONT_SIZE2); - sprintf(sf,"SWR: %1.1f:1",swr); - cairo_move_to(cr, 10, 55); - cairo_show_text(cr, sf); + cairo_set_font_size(cr, DISPLAY_FONT_SIZE2); + sprintf(sf,"SWR: %1.1f:1",swr); + cairo_move_to(cr, 10, 55); + cairo_show_text(cr, sf); + } cairo_set_source_rgb (cr, 1.0, 1.0, 1.0); // revert to white color diff --git a/tx_panadapter.c b/tx_panadapter.c index 19b94eb..0bd5da4 100644 --- a/tx_panadapter.c +++ b/tx_panadapter.c @@ -404,31 +404,41 @@ void tx_panadapter_update(TRANSMITTER *tx) { char text[64]; cairo_set_source_rgb(cr,1.0,0.2,0.0); cairo_set_font_size(cr, DISPLAY_FONT_SIZE3); + int row=0; - if(transmitter->fwd<0.0001 || band->disablePA || !pa_enabled) { - sprintf(text,"FWD %0.3f W",transmitter->exciter); - } else { - static int max_count=0; - static double max_level=0.0; - if(transmitter->fwd > max_level || max_count==10) { + + if (protocol == ORIGINAL_PROTOCOL || protocol == NEW_PROTOCOL) { + // + // Power values not available for SoapySDR + // + if(transmitter->fwd<0.0001 || band->disablePA || !pa_enabled) { + sprintf(text,"FWD %0.3f W",transmitter->exciter); + } else { + 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); } - max_count++; - sprintf(text,"FWD %0.1f W",max_level); + row += 15; + cairo_move_to(cr,10,row); + cairo_show_text(cr, text); + // + // Since colour is already red, no special + // action for "high SWR" warning + // + sprintf(text,"SWR 1:%1.1f",transmitter->swr); + row +=15; + cairo_move_to(cr,10,row); + cairo_show_text(cr, text); } - cairo_move_to(cr,10,15); - cairo_show_text(cr, text); - // - // Since colour is already red, no special - // action for "high SWR" warning - // - sprintf(text,"SWR 1:%1.1f",transmitter->swr); - cairo_move_to(cr,10,30); - cairo_show_text(cr, text); + row +=15; sprintf(text,"ALC %2.1f dB",transmitter->alc); - cairo_move_to(cr,10,45); + cairo_move_to(cr,10,row); cairo_show_text(cr, text); } -- 2.45.2