Skip to content

Commit

Permalink
rename "Adjust" to "gain offset", which is a little more descriptive
Browse files Browse the repository at this point in the history
it's the sum of the analog gain, attenuation and gain calibration subtracted from the A/D output to keep the front end unity gain
  • Loading branch information
ka9q committed Aug 29, 2024
1 parent 1d073a7 commit 4b96113
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion control.c
Original file line number Diff line number Diff line change
Expand Up @@ -1303,7 +1303,7 @@ static void display_sig(WINDOW *w,struct channel const *channel){
pprintw(w,row++,col,"RF Atten","%.1f dB ",-Frontend.rf_atten);
pprintw(w,row++,col,"RF lev cal","%.1f dB ",Frontend.rf_level_cal);
pprintw(w,row++,col,"A/D","%.1f dBFS",power2dB(Frontend.if_power));
pprintw(w,row++,col,"Adjust","%.1f dB ",-(Frontend.rf_gain - Frontend.rf_atten + Frontend.rf_level_cal));
pprintw(w,row++,col,"Gain offset","%.1f dB ",-(Frontend.rf_gain - Frontend.rf_atten + Frontend.rf_level_cal));
if(!isnan(channel->sig.bb_power))
pprintw(w,row++,col,"Baseband","%.1f dBm ",power2dB(channel->sig.bb_power));
if(!isnan(channel->sig.n0)){
Expand Down

0 comments on commit 4b96113

Please sign in to comment.