pull/139/merge
Martin Homuth-Rosemann 1 month ago committed by GitHub
commit 922b194474
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -2316,13 +2316,18 @@ VNA_SHELL_FUNCTION(cmd_info)
(void)argc; (void)argc;
(void)argv; (void)argv;
int i = 0; int i = 0;
#ifdef TINYSA3
while (info_about[i]) { while (info_about[i]) {
shell_printf("%s%s\r\n", info_about[i], (i == 0 ? hw_text : "")); shell_printf("%s\r\n", info_about[i]);
i++; i++;
} }
#ifdef TINYSA3
if (has_esd) if (has_esd)
shell_printf("ESD protected\r\n"); shell_printf("ESD protected\r\n");
#else
while (info_about[i]) {
shell_printf("%s%s\r\n", info_about[i], (i == 0 ? hw_text : ""));
i++;
}
#endif #endif
} }
#endif #endif

@ -610,10 +610,10 @@ VNA_SHELL_FUNCTION(cmd_if)
#ifdef TINYSA4 #ifdef TINYSA4
if (hw_if) if (hw_if)
t = "1067M..1073M"; t = "1067M..1073M";
usage_printf("usage: if {%s}\r\n%QHz\r\n", t, setting.frequency_IF);
#else #else
usage_printf("usage: if {433M..435M}\r\n%QHz\r\n", setting.frequency_IF); t = "433M..435M";
#endif #endif
usage_printf("usage: if {%s}\r\n%QHz\r\n", t, setting.frequency_IF);
return; return;
} }
freq_t a = (freq_t)my_atoi(argv[0]); freq_t a = (freq_t)my_atoi(argv[0]);

@ -6451,7 +6451,7 @@ redraw_cal_status:
// Compact status string // Compact status string
// ili9341_set_background(LCD_FG_COLOR); // ili9341_set_background(LCD_FG_COLOR);
ili9341_set_foreground(LCD_FG_COLOR); ili9341_set_foreground(LCD_FG_COLOR);
strncpy(buf," ",BLEN-1); strncpy(buf," ",BLEN);
if (setting.auto_IF) if (setting.auto_IF)
buf[0] = 'f'; buf[0] = 'f';
else else

Loading…
Cancel
Save

Powered by TurnKey Linux.